2020-05-31 09:57:00 -05:00

22 lines
352 B
JavaScript

var _foo = new WeakSet();
let Foo = /*#__PURE__*/function () {
"use strict";
function Foo() {
babelHelpers.classCallCheck(this, Foo);
_foo.add(this);
}
babelHelpers.createClass(Foo, [{
key: "test",
value: function test(other) {
return _foo.has(other);
}
}]);
return Foo;
}();
var _foo2 = function _foo2() {};