Initial commit

This commit is contained in:
CrazyMax 2019-09-20 22:23:45 +02:00
commit e28e23212c
778 changed files with 75786 additions and 0 deletions

17
node_modules/buffer-alloc-unsafe/index.js generated vendored Normal file
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