Length of String

Medium
conditional types
template literal
infer
recursion

Description:

Compute the length of a string literal, which behaves like String#length.

For example

LengthOfString<'hello'> // expected: 5

Code

Loading...