Files
story-studio/remotion/node_modules/@remotion/webcodecs/dist/arraybuffer-to-uint8-array.js
2026-02-21 10:33:18 +01:00

8 lines
278 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.arrayBufferToUint8Array = void 0;
const arrayBufferToUint8Array = (buffer) => {
return buffer ? new Uint8Array(buffer) : null;
};
exports.arrayBufferToUint8Array = arrayBufferToUint8Array;