13 lines
179 B
JavaScript
13 lines
179 B
JavaScript
var _bar = new WeakMap();
|
|
|
|
var Foo = function Foo() {
|
|
"use strict";
|
|
|
|
babelHelpers.classCallCheck(this, Foo);
|
|
|
|
_bar.set(this, {
|
|
writable: true,
|
|
value: "foo"
|
|
});
|
|
};
|