bufferToUint8Array.js 301 B

123456
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.bufferToUint8Array = void 0;
  4. const bufferToUint8Array = (buf) => new Uint8Array(buf.buffer, buf.byteOffset, buf.length);
  5. exports.bufferToUint8Array = bufferToUint8Array;
  6. //# sourceMappingURL=bufferToUint8Array.js.map