Node updated. Some todos.

This commit is contained in:
Norm Rasmussen
2024-09-23 20:52:09 -04:00
parent 8bfaca8375
commit f25622067f
2041 changed files with 124145 additions and 110445 deletions

6
Scripts/node_modules/pump/index.js generated vendored
View File

@ -1,6 +1,10 @@
var once = require('once')
var eos = require('end-of-stream')
var fs = require('fs') // we only need fs to get the ReadStream and WriteStream prototypes
var fs
try {
fs = require('fs') // we only need fs to get the ReadStream and WriteStream prototypes
} catch (e) {}
var noop = function () {}
var ancient = /^v?\.0/.test(process.version)