You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
356 B
18 lines
356 B
6 years ago
|
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
|