UNPKG

resolve-package-path

Version:

a special purpose fast memoizing way to resolve a node modules package.json

12 lines 346 B
'use strict'; const Cache = require("./cache"); module.exports = class CacheGroup { constructor() { this.MODULE_ENTRY = new Cache(); this.PATH = new Cache(); this.REAL_FILE_PATH = new Cache(); this.REAL_DIRECTORY_PATH = new Cache(); Object.freeze(this); } }; //# sourceMappingURL=cache-group.js.map