create-broadcast-app
Version:
Create a NextGen TV broadcast app with one command
54 lines (47 loc) • 1.35 kB
JavaScript
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/* @flow */
let boundRejectionHandler = null;
type ErrorCallback = (error: Error) => void;
function rejectionHandler(
callback: ErrorCallback,
e: PromiseRejectionEvent
): void {
if (e == null || e.reason == null) {
return callback(new Error('Unknown'));
}
let { reason } = e;
if (reason instanceof Error) {
return callback(reason);
}
// A non-error was rejected, we don't have a trace :(
// Look in your browser's devtools for more information
return callback(new Error(reason));
}
function registerUnhandledRejection(
target: EventTarget,
callback: ErrorCallback
) {
if (boundRejectionHandler !== null) {
return;
}
boundRejectionHandler = rejectionHandler.bind(undefined, callback);
// $FlowFixMe
target.addEventListener('unhandledrejection', boundRejectionHandler);
}
function unregisterUnhandledRejection(target: EventTarget) {
if (boundRejectionHandler === null) {
return;
}
// $FlowFixMe
target.removeEventListener('unhandledrejection', boundRejectionHandler);
boundRejectionHandler = null;
}
export {
registerUnhandledRejection as register,
unregisterUnhandledRejection as unregister,
};