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.
29 lines
613 B
29 lines
613 B
4 years ago
|
'use strict';
|
||
|
|
||
|
var Buffer = require('buffer').Buffer;
|
||
|
|
||
|
function hasFrom() {
|
||
|
// Node versions 5.x below 5.10 seem to have a `from` method
|
||
|
// However, it doesn't clone Buffers
|
||
|
// Luckily, it reports as `false` to hasOwnProperty
|
||
|
return (Buffer.hasOwnProperty('from') && typeof Buffer.from === 'function');
|
||
|
}
|
||
|
|
||
|
function cloneBuffer(buf) {
|
||
|
if (!Buffer.isBuffer(buf)) {
|
||
|
throw new Error('Can only clone Buffer.');
|
||
|
}
|
||
|
|
||
|
if (hasFrom()) {
|
||
|
return Buffer.from(buf);
|
||
|
}
|
||
|
|
||
|
var copy = new Buffer(buf.length);
|
||
|
buf.copy(copy);
|
||
|
return copy;
|
||
|
}
|
||
|
|
||
|
cloneBuffer.hasFrom = hasFrom;
|
||
|
|
||
|
module.exports = cloneBuffer;
|