UNPKG

magix-composer

Version:

compile html, style and javascript files into javascript

7 lines 167 B
module.exports = fn => { let cache = Object.create(null); return str => { let hit = cache[str]; return hit || (cache[str] = fn(str)); }; };