Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

type-challenges-solutions/en/medium-trim #282

Open
utterances-bot opened this issue Nov 5, 2022 · 3 comments
Open

type-challenges-solutions/en/medium-trim #282

utterances-bot opened this issue Nov 5, 2022 · 3 comments

Comments

@utterances-bot
Copy link

Trim

This project is aimed at helping you better understand how the type system works, writing your own utilities, or just having fun with the challenges.

https://ghaiklor.github.io/type-challenges-solutions/en/medium-trim.html

Copy link

Left trim and right trim can combined by using union also as in below.

type Trim<S> = S extends `${infer L}${Whitespace}` | `${Whitespace}${infer R}` ? Trim<T> :S;

@ghaiklor
Copy link
Owner

ghaiklor commented Nov 7, 2022

@gauravpan interesting, can you explain step by step why it works?

Copy link

As suggested by @gauravpan, we could tell TS to check if there is a white space to either left or right of the string, and let it infer the correct Rest for us.

type Whitespace = " " | "\n" | "\t";
type Trim<S> = S extends
  | `${infer Rest}${Whitespace}`
  | `${Whitespace}${infer Rest}`
  ? Trim<Rest>
  : S;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants