Cuts the first N characters from a string.
The string to cut.
The number of characters to cut.
type Original = CutFirstChars<"abcdef", 2>; // "cdef" Copy
type Original = CutFirstChars<"abcdef", 2>; // "cdef"
Cuts the first N characters from a string.