mirror of
https://github.com/S2-/gitlit
synced 2025-08-04 05:10:05 +02:00
add node modules to repo
This commit is contained in:
10
app/node_modules/builtin-modules/index.js
generated
vendored
Normal file
10
app/node_modules/builtin-modules/index.js
generated
vendored
Normal file
@@ -0,0 +1,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();
|
Reference in New Issue
Block a user