wasm-rquickjs 0.3.3

Tool for wrapping JavaScript modules as WebAssembly components using the QuickJS engine
Documentation
1
2
3
4
5
6
// querystring module - JavaScript-only (no native functions needed)
pub const QUERYSTRING_JS: &str = include_str!("querystring.js");

// Re-export for aliases
pub const REEXPORT_JS: &str =
    r#"export * from 'node:querystring'; export { default } from 'node:querystring';"#;