UNPKG

type-enhancers

Version:
4 lines (2 loc) 153 B
import type { WhiteSpace } from './WhiteSpace'; export type TrimStart<T extends string> = T extends `${WhiteSpace}${infer Rest}` ? TrimStart<Rest> : T;