Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
on-error-resume-next
Advanced tools
Run a function, synchronously or asynchronously, and ignore errors.
Run a function, synchronously or asynchronously, and ignore errors.
The name come from Visual Basic. The original On Error Resume Next
statement is considered a bad error handling practice.
Although the perception of the feature is negative, when scoped and used responsibly, it can become a very helpful utility function.
onErrorResumeNext
will return the result if it is a success. For example,
import onErrorResumeNext from 'on-error-resume-next';
const text = '{"hello":"World!"}';
const parsed = onErrorResumeNext(() => JSON.parse(text));
expect(parsed).toEqual({ hello: 'World!' });
Otherwise, it will return undefined
,
const parsed = onErrorResumeNext(() => JSON.parse('<xml />'));
expect(parsed).toBeUndefined();
When using
onErrorResumeNext
, please be responsible and fully understand the impact of ignoring errors.
onErrorResumeNext
will capture both exceptions (synchronous) and rejections (asynchronous). It is recommended to pair up with await
keyword to handle both cases in the same way.
const res = await onErrorResumeNext(() => fetch('/health'));
expect(res).toBeUndefined();
The code is for elaboration only, the better expectation should be
expect(res).resolves.toBeUndefined()
.
Like us? Star us.
Want to make it better? File us an issue.
Don't like something you see? Submit a pull request.
FAQs
Run a function, synchronously or asynchronously, and ignore errors.
The npm package on-error-resume-next receives a total of 5,775 weekly downloads. As such, on-error-resume-next popularity was classified as popular.
We found that on-error-resume-next demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.