Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/froebel/types.ts>Join

A strictly typed utility library.
Latest
type alias Join
import { type Join } from "https://deno.land/x/froebel@v0.23.2/types.ts";

Type Parameters

Array extends unknown[]
Separator extends string
definition: Array extends [infer A, ...infer B] ? (B extends [] ? ToString<A> : `${ToString<A>}${Separator}${Join<B, Separator>}`) : ""