UNPKG

art-template

Version:
19 lines (14 loc) 298 B
"use strict"; var caches = { __data: Object.create(null), set: function set(key, val) { this.__data[key] = val; }, get: function get(key) { return this.__data[key]; }, reset: function reset() { this.__data = {}; } }; module.exports = caches;