MCPcopy Index your code
hub / github.com/googleworkspace/apps-script-samples / hello_

Function hello_

wasm/hello-world/src/wasm.js:22–29  ·  view source on GitHub ↗

* Wrapper function for hello * @param {string} name * @returns

(name)

Source from the content-addressed store, hash-verified

20 * @returns
21 */
22async function hello_(name) {
23 const wasm = await import("./pkg/example_bg.wasm");
24 const { __wbg_set_wasm, hello } = await import("./pkg/example_bg.js");
25
26 __wbg_set_wasm(wasm);
27
28 return hello(name);
29}
30
31globalThis.hello_ = hello_;

Callers 4

benchmarkFunction · 0.85
testFunction · 0.85
benchmarkFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by 1

testFunction · 0.68