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

Add custom message to _unsafeUnwrap* #590

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/hip-cycles-clean.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'neverthrow': minor
---

Add custom message to \_unsafeUnwrap
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1571,9 +1571,17 @@ _unsafeUnwrapErr({

// ^ Now the error object will have a `.stack` property containing the current stack
```
You can also conditionally add a custom error message that will be propagated with the error object. By default this error message will be `Called '_unsafeUnwrap' on an Err` when called on an `Err` and `Called '_unsafeUnwrapErr' on an Ok` when called on an `Ok`.

---
```typescript
_unsafeUnwrapErr({
message: 'Your custom error message',
withStackTrace: true,
})
```

---

If you find this package useful, please consider [sponsoring me](https://github.com/sponsors/supermacro/) or simply [buying me a coffee](https://ko-fi.com/gdelgado)!

---
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/_internals/error.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Result } from '../result'

export interface ErrorConfig {
withStackTrace: boolean
withStackTrace?: boolean
message?: string
}

const defaultErrorConfig: ErrorConfig = {
Expand Down
8 changes: 6 additions & 2 deletions src/result.ts
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,11 @@ export class Ok<T, E> implements IResult<T, E> {
}

_unsafeUnwrapErr(config?: ErrorConfig): E {
throw createNeverThrowError('Called `_unsafeUnwrapErr` on an Ok', this, config)
throw createNeverThrowError(
config?.message ?? 'Called `_unsafeUnwrapErr` on an Ok',
this,
config,
)
}
}

Expand Down Expand Up @@ -461,7 +465,7 @@ export class Err<T, E> implements IResult<T, E> {
}

_unsafeUnwrap(config?: ErrorConfig): T {
throw createNeverThrowError('Called `_unsafeUnwrap` on an Err', this, config)
throw createNeverThrowError(config?.message ?? 'Called `_unsafeUnwrap` on an Err', this, config)
}

_unsafeUnwrapErr(_?: ErrorConfig): E {
Expand Down
Loading