15 lines
265 B
JavaScript
15 lines
265 B
JavaScript
var foo = "bar";
|
|
|
|
var _bar = babelHelpers.classPrivateFieldLooseKey("bar");
|
|
|
|
var Foo = function Foo() {
|
|
"use strict";
|
|
|
|
babelHelpers.classCallCheck(this, Foo);
|
|
Object.defineProperty(this, _bar, {
|
|
writable: true,
|
|
value: foo
|
|
});
|
|
var _foo = "foo";
|
|
};
|