1
0
Fork 0
mirror of synced 2024-09-19 18:59:06 +12:00
budibase/packages/frontend-core/node_modules/lodash/_cloneArrayBuffer.js

17 lines
449 B
JavaScript
Raw Normal View History

var Uint8Array = require('./_Uint8Array');
/**
* Creates a clone of `arrayBuffer`.
*
* @private
* @param {ArrayBuffer} arrayBuffer The array buffer to clone.
* @returns {ArrayBuffer} Returns the cloned array buffer.
*/
function cloneArrayBuffer(arrayBuffer) {
var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
new Uint8Array(result).set(new Uint8Array(arrayBuffer));
return result;
}
module.exports = cloneArrayBuffer;