This repository has been archived on 2021-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
simpledash/bulma/node_modules/currently-unhandled/index.js

13 lines
250 B
JavaScript

'use strict';
var core = require('./core');
module.exports = function (p) {
p = p || process;
var c = core();
p.on('unhandledRejection', c.onUnhandledRejection);
p.on('rejectionHandled', c.onRejectionHandled);
return c.currentlyUnhandled;
};