arudradey's picture
download
raw
239 Bytes
function cloneArray(array) {
var cloned = array.slice(0);
for (var i = 0, l = cloned.length; i < l; i++) {
if (Array.isArray(cloned[i])) { cloned[i] = cloneArray(cloned[i]); }
}
return cloned;
}
module.exports = cloneArray;

Xet Storage Details

Size:
239 Bytes
·
Xet hash:
55971bfcfdd5c4e807d69f8d6a420a5eb222609f295a40e32fc1308f9ce1bc63

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.