const map = new WeakMap(); function instance(ctx) { if (!map.has(ctx)) map.set(ctx, {}); return map.get(ctx); } module.exports = instance;