1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/import-fresh
zhurui 54669c07cf i4 2023-12-18 13:12:25 +08:00
..
node_modules i4 2023-12-18 13:12:25 +08:00
index.js i4 2023-12-18 13:12:25 +08:00
license i4 2023-12-18 13:12:25 +08:00
package.json i4 2023-12-18 13:12:25 +08:00
readme.md i4 2023-12-18 13:12:25 +08:00

readme.md

import-fresh Build Status

Import a module while bypassing the cache

Useful for testing purposes when you need to freshly import a module.

Install

$ npm install --save import-fresh

Usage

// foo.js
let i = 0;
module.exports = () => ++i;
const importFresh = require('import-fresh');

require('./foo')();
//=> 1

require('./foo')();
//=> 2

importFresh('./foo')();
//=> 1

importFresh('./foo')();
//=> 1

License

MIT © Sindre Sorhus