UNPKG

mdx-m3-viewer

Version:

A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.

12 lines (10 loc) 249 B
let audioContext = new OfflineAudioContext(1, 1, 48000); /** * A context-less decodeAudioData(). * * @param {ArrayBuffer} buffer * @return {Promise} */ export function decodeAudioData(buffer) { return audioContext.decodeAudioData(buffer); }