diff options
author | LinuxWizard42 <computerwizard@linuxmail.org> | 2022-10-12 23:08:57 +0300 |
---|---|---|
committer | LinuxWizard42 <computerwizard@linuxmail.org> | 2022-10-12 23:08:57 +0300 |
commit | 726b81b19251674e149ccfbb1abacbd837fc6db0 (patch) | |
tree | fbdbb227dc01357eb76e8222d76185bc124c5ca6 /node_modules/loud-rejection/readme.md | |
parent | 34f0890e175698940d49238097579f44e4d78c89 (diff) | |
download | FlashRunner-726b81b19251674e149ccfbb1abacbd837fc6db0.tar.gz FlashRunner-726b81b19251674e149ccfbb1abacbd837fc6db0.tar.zst |
Removed files that should not have been included in git
Diffstat (limited to 'node_modules/loud-rejection/readme.md')
-rw-r--r-- | node_modules/loud-rejection/readme.md | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/node_modules/loud-rejection/readme.md b/node_modules/loud-rejection/readme.md deleted file mode 100644 index a973261..0000000 --- a/node_modules/loud-rejection/readme.md +++ /dev/null @@ -1,68 +0,0 @@ -# loud-rejection [](https://travis-ci.org/sindresorhus/loud-rejection) [](https://coveralls.io/github/sindresorhus/loud-rejection?branch=master) - -> Make unhandled promise rejections fail loudly instead of the default [silent fail](https://gist.github.com/benjamingr/0237932cee84712951a2) - -By default, promises fail silently if you don't attach a `.catch()` handler to them. - -Use this in top-level things like tests, CLI tools, apps, etc, **but not in reusable modules.**<br> -Not needed in the browser as unhandled promises are shown in the console. - - -## Install - -``` -$ npm install --save loud-rejection -``` - - -## Usage - -```js -const loudRejection = require('loud-rejection'); -const promiseFn = require('promise-fn'); - -// Install the unhandledRejection listeners -loudRejection(); - -promiseFn(); -``` - -Without this module it's more verbose and you might even miss some that will fail silently: - -```js -const promiseFn = require('promise-fn'); - -function error(err) { - console.error(err.stack); - process.exit(1); -} - -promiseFn().catch(error); -``` - -### Register script - -Alternatively to the above, you may simply require `loud-rejection/register` and the unhandledRejection listener will be automagically installed for you. - -This is handy for ES2015 imports: - -```js -import 'loud-rejection/register'; -``` - - -## API - -### loudRejection([log]) - -#### log - -Type: `Function`<br> -Default: `console.error` - -Custom logging function to print the rejected promise. Receives the error stack. - - -## License - -MIT © [Sindre Sorhus](https://sindresorhus.com) |