mirror of
https://github.com/thangisme/notes.git
synced 2024-10-31 23:37:18 -04:00
11 lines
217 B
JavaScript
11 lines
217 B
JavaScript
'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();
|