1 | ;
|
2 | // Type-only circular import
|
3 | // eslint-disable-next-line import/no-cycle
|
4 | Object.defineProperty(exports, "__esModule", { value: true });
|
5 | exports.default = getInternalSlots;
|
6 | var internalSlotMap = new WeakMap();
|
7 | function getInternalSlots(x) {
|
8 | var internalSlots = internalSlotMap.get(x);
|
9 | if (!internalSlots) {
|
10 | internalSlots = Object.create(null);
|
11 | internalSlotMap.set(x, internalSlots);
|
12 | }
|
13 | return internalSlots;
|
14 | }
|