Welcome to mirror list, hosted at ThFree Co, Russian Federation.

is-core.js « lib « resolve « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 48bc96c47eadc5c07d0c20b3ca8e59f428c236f0 (plain)
1
2
3
4
5
var core = require('./core');

module.exports = function isCore(x) {
    return Object.prototype.hasOwnProperty.call(core, x);
};