UNPKG

vue-app-sdk

Version:
10 lines (9 loc) 272 B
import Uint8Array from "./_Uint8Array.js"; function cloneArrayBuffer(arrayBuffer) { var result = new arrayBuffer.constructor(arrayBuffer.byteLength); new Uint8Array(result).set(new Uint8Array(arrayBuffer)); return result; } export { cloneArrayBuffer as default };