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

templateLiteral

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

String template literal

@example
// returns "`hello ${name}`!"
templateLiteral(["hello ", "!"], ["name"])
function templateLiteral(stringParts: string[], ...keys: Printable[]): string;
§
templateLiteral(stringParts: string[], ...keys: Printable[]): string
[src]

§Parameters

§
stringParts: string[]
[src]
§
...keys: Printable[] optional
[src]

§Return Type

§
string
[src]