nodeWrapper.cjs 468 B

1234567891011121314
  1. "use strict";
  2. const Module = require("module");
  3. const globalModuleCache = Module._cache;
  4. const internalModuleCache = Object.create(null);
  5. Module._cache = internalModuleCache;
  6. const node = require("./node.cjs");
  7. Module._cache = globalModuleCache;
  8. const smsPath = require.resolve("source-map-support");
  9. globalModuleCache[smsPath] = internalModuleCache[smsPath];
  10. const register = node.default;
  11. register();
  12. module.exports = node;
  13. //# sourceMappingURL=nodeWrapper.cjs.map