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(alternatedTextsAndExpressions: string[]): string;
§
templateLiteral(alternatedTextsAndExpressions: string[]): string
[src]

§Parameters

§
alternatedTextsAndExpressions: string[]
[src]

§Return Type

§
string
[src]