generated at
2/18/2025, 3:41:04 PM
Trim<S>
型レベルの
String.prototype.trim()
>
#WIP
https://github.com/type-challenges/type-challenges/blob/master/questions/108-medium-trim/README.ja.md
実装
type-challenges
106
与えられた文字列の頭の空白を除く
ts
type trimed = TrimLeft<' Hello World '> // 'Hello World '
実装