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

node_modules.builtin-modules.index.js Maven / Gradle / Ivy

The newest version!
'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();




© 2015 - 2024 Weber Informatics LLC | Privacy Policy