Files
url_tracker_tool/node_modules/jest-pnp-resolver/createRequire.js
Andrei 58f8093689 Rebrand from 'Redirect Intelligence v2' to 'URL Tracker Tool V2' throughout UI
- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
2025-08-19 19:12:23 +00:00

26 lines
693 B
JavaScript

const nativeModule = require(`module`);
module.exports = (filename) => {
// Added in Node v12.2.0
if (nativeModule.createRequire) {
return nativeModule.createRequire(filename);
}
// Added in Node v10.12.0 and deprecated since Node v12.2.0
if (nativeModule.createRequireFromPath) {
return nativeModule.createRequireFromPath(filename);
}
// Polyfill
return _createRequire(filename);
};
// Polyfill
function _createRequire (filename) {
const mod = new nativeModule.Module(filename, null)
mod.filename = filename
mod.paths = nativeModule.Module._nodeModulePaths(path.dirname(filename))
mod._compile(`module.exports = require;`, filename)
return mod.exports
}