Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
1
const
{ core } = Deno;
2
3
function
argsToMessage(...args) {
4
return
args.map((arg) => JSON.stringify(arg)).join(
" "
);
5
}
6
7
globalThis.console = {
8
log: (...args) => {
Callers
1
runtime.js
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected