AeThex-Engine-Core/services/auth-service/node_modules/jest-pnp-resolver/createRequire.js
mrpiglr 190b6b2eab
Some checks are pending
Build AeThex Engine / build-windows (push) Waiting to run
Build AeThex Engine / build-linux (push) Waiting to run
Build AeThex Engine / build-macos (push) Waiting to run
Build AeThex Engine / create-release (push) Blocked by required conditions
Deploy Docsify Documentation / build (push) Waiting to run
Deploy Docsify Documentation / deploy (push) Blocked by required conditions
chore: sync local changes to Forgejo
2026-03-13 00:37:06 -07:00

25 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
}