You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415 |
- '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 */ }
- }
- };
|