UNPKG

@mpxjs/core

Version:

mpx runtime core

18 lines (15 loc) 228 B
const cache = {} const contextMap = { set (id, context) { cache[id] = context }, get (id) { return cache[id] }, remove (id) { if (cache[id]) { delete cache[id] } } } export default contextMap