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

index.js « builtin-modules « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ef35ab0694e7320a3b25f19992a5cc4b6031c79 (plain)
1
2
3
4
5
6
7
8
9
10
'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();