mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
23 lines
464 B
JavaScript
23 lines
464 B
JavaScript
|
var _foo = /*#__PURE__*/babelHelpers.classPrivateFieldLooseKey("foo");
|
||
|
|
||
|
let Foo = /*#__PURE__*/function () {
|
||
|
"use strict";
|
||
|
|
||
|
function Foo() {
|
||
|
babelHelpers.classCallCheck(this, Foo);
|
||
|
Object.defineProperty(this, _foo, {
|
||
|
value: _foo2
|
||
|
});
|
||
|
}
|
||
|
|
||
|
babelHelpers.createClass(Foo, [{
|
||
|
key: "test",
|
||
|
value: function test(other) {
|
||
|
return Object.prototype.hasOwnProperty.call(other, _foo);
|
||
|
}
|
||
|
}]);
|
||
|
return Foo;
|
||
|
}();
|
||
|
|
||
|
function _foo2() {}
|