Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura
christian 4571a14169 android fix il y a 4 ans
..
browser.js android fix il y a 4 ans
core.js android fix il y a 4 ans
index.js android fix il y a 4 ans
license android fix il y a 4 ans
package.json android fix il y a 4 ans
readme.md android fix il y a 4 ans

readme.md

currently-unhandled Build Status Coverage Status

Track the list of currently unhandled promise rejections.

Install

$ npm install --save currently-unhandled

Usage

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 r