Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 231 Bytes

File metadata and controls

12 lines (10 loc) · 231 Bytes

mod-parser

Typescript/Javascript MOD audio file parser

Usage

fetch(filename)
   .then(r => r.arrayBuffer()
       .then(data => {
           const mod = Mod.fromByteArray(new Uint8Array(data));
       }));