All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.internals.get-built-in-node-module.js Maven / Gradle / Ivy

The newest version!
'use strict';
var globalThis = require('../internals/global-this');
var IS_NODE = require('../internals/environment-is-node');

module.exports = function (name) {
  if (IS_NODE) {
    try {
      return globalThis.process.getBuiltinModule(name);
    } catch (error) { /* empty */ }
    try {
      // eslint-disable-next-line no-new-func -- safe
      return Function('return require("' + name + '")')();
    } catch (error) { /* empty */ }
  }
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy