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: df3474a10f3f128bea3354d67bd40638f55552b5 (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();