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 WrappedMaybe['try'] method #75

Open
erwijet opened this issue Oct 18, 2023 · 0 comments
Open

Add WrappedMaybe['try'] method #75

erwijet opened this issue Oct 18, 2023 · 0 comments

Comments

@erwijet
Copy link
Collaborator

erwijet commented Oct 18, 2023

Introduce a try method on WrappedMaybe which called the given fn and if it throws, it returns null.

const str: string | null = '...';
const schema = z.object(...);

const res = maybe(str)?.try(JSON.parse)?.try(schema.parse)?.take() ?? OTHERWISE;

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

1 participant