MCPcopy Create free account
hub / github.com/denoland/roll-your-own-javascript-runtime / argsToMessage

Function argsToMessage

src/runtime.js:3–5  ·  view source on GitHub ↗
(...args)

Source from the content-addressed store, hash-verified

1const { core } = Deno;
2
3function argsToMessage(...args) {
4 return args.map((arg) => JSON.stringify(arg)).join(" ");
5}
6
7globalThis.console = {
8 log: (...args) => {

Callers 1

runtime.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected