function tailimport { tail } from "https://dotland.deno.dev/x/rambda@v9.2.0/immutable.d.ts"; tail<T extends readonly unknown[]>(input: T): T extends readonly [any, ...infer U] ? U : readonly [...T]It returns all but the first element of input. tail(input: string): stringIt returns all but the first element of input. Type ParametersT extends readonly unknown[]Parametersinput: TReturnsT extends readonly [any, ...infer U] ? U : readonly [...T]Parametersinput: stringReturnsstring