setup-go/node_modules/import-fresh
Stephen Franceschelli a966e84ff9 Fix.
2019-07-30 13:30:32 -04:00
..
index.js Fix. 2019-07-30 13:30:32 -04:00
license Fix. 2019-07-30 13:30:32 -04:00
package.json Fix. 2019-07-30 13:30:32 -04:00
readme.md Fix. 2019-07-30 13:30:32 -04:00

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