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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/builtin-modules/index.js')
-rw-r--r--node_modules/builtin-modules/index.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/node_modules/builtin-modules/index.js b/node_modules/builtin-modules/index.js
deleted file mode 100644
index 9ef35ab06..000000000
--- a/node_modules/builtin-modules/index.js
+++ /dev/null
@@ -1,10 +0,0 @@
-'use strict';
-
-var blacklist = [
- 'freelist',
- 'sys'
-];
-
-module.exports = Object.keys(process.binding('natives')).filter(function (el) {
- return !/^_|^internal|\//.test(el) && blacklist.indexOf(el) === -1;
-}).sort();