UNPKG

356 BJavaScriptView Raw
1// Type-only circular import
2// eslint-disable-next-line import/no-cycle
3var internalSlotMap = new WeakMap();
4export default function getInternalSlots(x) {
5 var internalSlots = internalSlotMap.get(x);
6 if (!internalSlots) {
7 internalSlots = Object.create(null);
8 internalSlotMap.set(x, internalSlots);
9 }
10 return internalSlots;
11}