UNPKG

plugapi

Version:

Generic API for building plug.dj bots

12 lines (8 loc) 181 B
'use strict'; const store = new WeakMap(); module.exports = function(obj) { if (!store.has(obj)) { store.set(obj, {}); } return store.get(obj); };