Sign in
cobalt
/
cobalt
/
0c2b1d4428f8ae16220e86a16bebd07ff691a412
/
.
/
third_party
/
devtools
/
node_modules
/
currently-unhandled
/
index.js
blob: 238b9d9fc55eee90e6e2000f91ad01b006178ccc [
file
] [
log
] [
blame
]
'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
;
};