Files
Kmake/test/fixtures/es-modules/wasm-function.js
2026-05-26 23:36:42 -07:00

12 lines
287 B
JavaScript

export function call1 (func, thisObj, arg0) {
return func.call(thisObj, arg0);
}
export function call2 (func, thisObj, arg0, arg1) {
return func.call(thisObj, arg0, arg1);
}
export function call3 (func, thisObj, arg0, arg1, arg2) {
return func.call(thisObj, arg0, arg1, arg2);
}