File "_cloneTypedArray.js"
Full path: /home/ulinin/public_html/ttt.ulinin.com/node_modules/lodash/_cloneTypedArray.js
File
size: 0.51 KB (527 B bytes)
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor Back
var cloneArrayBuffer = require('./_cloneArrayBuffer');
/**
* Creates a clone of `typedArray`.
*
* @private
* @param {Object} typedArray The typed array to clone.
* @param {boolean} [isDeep] Specify a deep clone.
* @returns {Object} Returns the cloned typed array.
*/
function cloneTypedArray(typedArray, isDeep) {
var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer;
return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);
}
module.exports = cloneTypedArray;