معرفی شرکت ها


currently-unhandled-0.4.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Track the list of currently unhandled promise rejections.
ویژگی مقدار
سیستم عامل -
نام فایل currently-unhandled-0.4.1
نام currently-unhandled
نسخه کتابخانه 0.4.1
نگهدارنده ['jamestalmage']
ایمیل نگهدارنده ['james@talmage.io']
نویسنده James Talmage
ایمیل نویسنده james@talmage.io
آدرس صفحه اصلی git+https://github.com/jamestalmage/currently-unhandled.git
آدرس اینترنتی https://github.com/jamestalmage/currently-unhandled#readme
مجوز MIT
# currently-unhandled [![Build Status](https://travis-ci.org/jamestalmage/currently-unhandled.svg?branch=master)](https://travis-ci.org/jamestalmage/currently-unhandled) [![Coverage Status](https://coveralls.io/repos/github/jamestalmage/currently-unhandled/badge.svg?branch=master)](https://coveralls.io/github/jamestalmage/currently-unhandled?branch=master) > Track the list of currently unhandled promise rejections. ## Install ``` $ npm install --save currently-unhandled ``` ## Usage ```js const currentlyUnhandled = require('currently-unhandled')(); // <- note the invocation var fooError = new Error('foo'); var p = Promise.reject(new Error('foo')); // on the next tick - unhandled rejected promise is added to the list: currentlyUnhandled(); //=> [{promise: p, reason: fooError}]' p.catch(() => {}); // on the next tick - handled promise is now removed from the list: currentlyUnhandled(); //=> []; ``` ## API ### currentlyUnhandled() Returns an array of objects with `promise` and `reason` properties representing the rejected promises that currently do not have a rejection handler. The list grows and shrinks as unhandledRejections are published, and later handled. ## Browser Support This module can be bundled with `browserify`. At time of writing, it will work with native Promises in the Chrome browser only. For best cross-browser support, use `bluebird` instead of native Promise support in browsers. ## License MIT © [James Talmage](http://github.com/jamestalmage)


نیازمندی

مقدار نام
^1.0.1 array-find-index


زبان مورد نیاز

مقدار نام
5.10.1 Npm


نحوه نصب


نصب پکیج tgz currently-unhandled-0.4.1:

    npm install currently-unhandled-0.4.1.tgz