Trim medium #template-literal

by Anthony Fu @antfu

Take the Challenge    日本語

Implement `Trim` which takes an exact string type and returns a new string with the whitespace from both ends removed. For example ```ts type trimed = Trim<' Hello World '> // expected to be 'Hello World' ```
Back Share your Solutions Check out Solutions