Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Record

import { Record } from "https://raw.githubusercontent.com/Hatscat/MetavaScript/main/index.ts";

put keys and values in an object

@example
// returns "{a:42,b:{c:[true,'yes']}}"
Record({ a: 42, b: { c: [ true, Text("yes") ] } })
function Record(obj: Record<string | number, unknown>): string;
§
Record(obj: Record<string | number, unknown>): string
[src]

§Parameters

§
obj: Record<string | number, unknown>
[src]

§Return Type

§
string
[src]