Bindings for all JS global objects and functions in all JS environments like
Node.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate.
// Used for `Function.rs` tests
exports.get_function_to_bind=function(){returnfunction(){returnthis.x||1;}};exports.get_value_to_bind_to=function(){return{x:2};};exports.call_function=function(f){returnf();};