add node_modules

This commit is contained in:
fxy060608
2018-11-18 16:29:14 +08:00
parent 39855795ec
commit 44216319cb
200 changed files with 25415 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
function allocUnsafe (size) {
if (typeof size !== 'number') {
throw new TypeError('"size" argument must be a number')
}
if (size < 0) {
throw new RangeError('"size" argument must not be negative')
}
if (Buffer.allocUnsafe) {
return Buffer.allocUnsafe(size)
} else {
return new Buffer(size)
}
}
module.exports = allocUnsafe