Files
2024-09-14 19:55:53 +01:00

9 lines
230 B
JavaScript

import { NCMFile, ready } from './dist/loader.mjs';
ready.then(() => {
const ncm = new NCMFile();
let n = ncm.open(new Uint8Array([]));
console.assert(n !== 0, 'n should not be 0', { n });
console.log('mjs test ok');
});