wasm-rquickjs 0.3.4

Tool for wrapping JavaScript modules as WebAssembly components using the QuickJS engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// node:readline/promises stub

const NOT_SUPPORTED = new Error('node:readline/promises is not yet supported in WebAssembly environment');

export function createInterface() {
    throw NOT_SUPPORTED;
}

export class Interface {
    constructor() {
        throw NOT_SUPPORTED;
    }
}

export default { createInterface, Interface };