utils.js 190 B

12345678910
  1. function requireUncached(path) {
  2. delete require.cache[require.resolve(path)];
  3. return require(path);
  4. }
  5. module.exports = {
  6. requireUncached,
  7. };
  8. module.exports.default = module.exports;