mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 12:20:04 +02:00
43 lines
1.5 KiB
Markdown
43 lines
1.5 KiB
Markdown
# Try Catch [![License][LicenseIMGURL]][LicenseURL] [![NPM version][NPMIMGURL]][NPMURL] [![Dependency Status][DependencyStatusIMGURL]][DependencyStatusURL] [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Coverage Status][CoverageIMGURL]][CoverageURL]
|
|
|
|
[NPMIMGURL]: https://img.shields.io/npm/v/try-catch.svg?style=flat
|
|
[BuildStatusIMGURL]: https://img.shields.io/travis/coderaiser/try-catch/master.svg?style=flat
|
|
[DependencyStatusIMGURL]: https://img.shields.io/david/coderaiser/try-catch.svg?style=flat
|
|
[LicenseIMGURL]: https://img.shields.io/badge/license-MIT-317BF9.svg?style=flat
|
|
[NPMURL]: https://npmjs.org/package/try-catch "npm"
|
|
[BuildStatusURL]: https://travis-ci.org/coderaiser/try-catch "Build Status"
|
|
[DependencyStatusURL]: https://david-dm.org/coderaiser/try-catch "Dependency Status"
|
|
[LicenseURL]: https://tldrlegal.com/license/mit-license "MIT License"
|
|
|
|
[CoverageURL]: https://coveralls.io/github/coderaiser/readify?branch=master
|
|
[CoverageIMGURL]: https://coveralls.io/repos/coderaiser/readify/badge.svg?branch=master&service=github
|
|
|
|
Functional `try-catch` wrapper
|
|
|
|
## Install
|
|
|
|
```
|
|
npm i try-catch
|
|
```
|
|
|
|
## Example
|
|
|
|
```js
|
|
const tryCatch = require('try-catch');
|
|
const {parse} = JSON;
|
|
const [error, result] = tryCatch(parse, 'hello');
|
|
|
|
if (error)
|
|
console.error(error.message);
|
|
|
|
```
|
|
|
|
## Related
|
|
|
|
- [try-to-catch](https://github.com/coderaiser/try-to-catch "TryToCatch") - functional try-catch wrapper for promises.
|
|
|
|
## License
|
|
|
|
MIT
|
|
|