parcoursup/node_modules/mocha/lib/nodejs/file-unloader.js
lalBi94 7bc56c09b5 $
2023-03-05 13:23:23 +01:00

16 lines
277 B
JavaScript

'use strict';
/**
* This module should not be in the browser bundle, so it's here.
* @private
* @module
*/
/**
* Deletes a file from the `require` cache.
* @param {string} file - File
*/
exports.unloadFile = file => {
delete require.cache[require.resolve(file)];
};