index.js 217 Bytes RawBlameHistoryPermalink 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();