wasm-bindgen/crates/js-sys/tests/wasm/Function.js

11 lines
244 B
JavaScript
Raw Normal View History

2018-07-20 22:43:07 +03:00
// Used for `Function.rs` tests
exports.get_function_to_bind = function() {
return function() { return this.x || 1; }
};
exports.get_value_to_bind_to = function() {
return { x: 2 };
};
exports.call_function = function(f) {
return f();
};