bun-convert-a-uint8array-to-an-arraybuffer
Convert a Uint8Array to an ArrayBuffer
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Convert a Uint8Array to an ArrayBuffer
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Configure a private registry for an organization scope with bun install
Speed up JavaScript execution with bytecode caching in Bun's bundler
Bun's bundler has built-in support for CSS with modern features
Migration guide from esbuild to Bun's bundler
Generate standalone executables from TypeScript or JavaScript files with Bun
Build fullstack applications with Bun's integrated dev server that bundles frontend assets and handles API routes
| name | Bun Convert a Uint8Array to an ArrayBuffer |
| description | Convert a Uint8Array to an ArrayBuffer |
A Uint8Array is a typed array class, meaning it is a mechanism for viewing data in an underlying ArrayBuffer. The underlying ArrayBuffer is accessible via the buffer property.
const arr = new Uint8Array(64);
arr.buffer; // => ArrayBuffer(64)
The Uint8Array may be a view over a subset of the data in the underlying ArrayBuffer. In this case, the buffer property will return the entire buffer, and the byteOffset and byteLength properties will indicate the subset.
const arr = new Uint8Array(64, 16, 32);
arr.buffer; // => ArrayBuffer(64)
arr.byteOffset; // => 16
arr.byteLength; // => 32
See Docs > API > Binary Data for complete documentation on manipulating binary data with Bun.