CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
_cloneArrayBuffer.js17 linesDownload Raw Back to lodash-es
1import Uint8Array from './_Uint8Array.js';2 3/**4 * Creates a clone of `arrayBuffer`.5 *6 * @private7 * @param {ArrayBuffer} arrayBuffer The array buffer to clone.8 * @returns {ArrayBuffer} Returns the cloned array buffer.9 */10function cloneArrayBuffer(arrayBuffer) {11  var result = new arrayBuffer.constructor(arrayBuffer.byteLength);12  new Uint8Array(result).set(new Uint8Array(arrayBuffer));13  return result;14}15 16export default cloneArrayBuffer;17 
basant307/AI_Governance_Project · CoolFace