You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Thomas Chazot bd1233ba46
Début du projet
2 years ago
..
node_modules/resolve-from Début du projet 2 years ago
index.js Début du projet 2 years ago
license Début du projet 2 years ago
package.json Début du projet 2 years ago
readme.md Début du projet 2 years ago

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