Trim Left medium #template-literal

by Anthony Fu @antfu

Take the Challenge    简体中文 日本語 한국어

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

Related Challenges

108・Trim 4803・Trim Right