Sign in
apache
/
pouchdb
/
57923d6c088f52adcc785f1dad693227fb209396
/
.
/
lib
/
deps
/
binary
/
cloneBinaryObject.js
blob: f975646c315748f9a440520eb5252697238e9abb [
file
]
'use strict'
;
module
.
exports
=
function
cloneBinaryObject
(
object
)
{
var
copy
=
new
Buffer
(
object
.
length
);
object
.
copy
(
copy
);
return
copy
;
};