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

Text

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

stringify a value, by adding quotes around it

@example
// return "'hello'"
Text`hello`
@example
// return '"hello 'world'!"'
Text("hello 'world'!")
function Text(value: Printable): string;
§
Text(value: Printable): string
[src]

§Parameters

§Return Type

§
string
[src]