D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
washeet.softurecs.com
/
node_modules
/
music-metadata
/
lib
/
iff
/
Filename :
index.js
back
Copy
import * as Token from 'token-types'; import { FourCcToken } from '../common/FourCC.js'; /** * Common AIFF chunk header */ export const Header = { len: 8, get: (buf, off) => { return { // Chunk type ID chunkID: FourCcToken.get(buf, off), // Chunk size chunkSize: Number(BigInt(Token.UINT32_BE.get(buf, off + 4))) }; } };