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

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

There is a newer version: 3.39.0
Show newest version
'use strict';
var path = require('../internals/path');
var global = require('../internals/global');
var isCallable = require('../internals/is-callable');

var aFunction = function (variable) {
  return isCallable(variable) ? 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];
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy