import { id } from "https://deno.land/x/fun@v2.0.0/fn.ts";
A thunk over the identity function. It allows one to constrain an identity to a specific type.
Examples
Example 1
Example 1
import { id } from "./fn.ts";
const idString = id<string>(); // (s: string) => string
const idNumber = id<number>(); // (n: number) => number
const result1 = idString("Hello"); // "Hello"
const result2 = idNumber(1); // 1