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-trunc #347

Open
utterances-bot opened this issue Aug 20, 2024 · 1 comment
Open

type-challenges-solutions/en/medium-trunc #347

utterances-bot opened this issue Aug 20, 2024 · 1 comment

Comments

@utterances-bot
Copy link

Trunc

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-trunc.html

Copy link

There are 2 cases not passed: Expect<Equal<Trunc<'.3'>, '0'>> and Expect<Equal<Trunc<'-.3'>, '-0'>>

Here is my solution:

type Tr<T extends string> = T extends `${infer rest}${'.'}${any}`
? rest extends '-'
  ? '-0'
  : rest extends ''
    ? '0'
    : rest
: T


type Trunc<T extends number | string> = Tr<`${T}`>

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

No branches or pull requests

2 participants