projecte_ionic/node_modules/core-js/internals/get-built-in.js
2022-02-09 18:30:03 +01:00

12 lines
434 B
JavaScript
Executable file

var path = require('../internals/path');
var global = require('../internals/global');
var aFunction = function (variable) {
return typeof variable == 'function' ? variable : undefined;
};
module.exports = function (namespace, method) {
return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])
: path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];
};