UNPKG

381 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var internalSlotMap = new WeakMap();
4function 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}
12exports.default = getInternalSlots;