UNPKG

infrastructure-components

Version:

Infrastructure-Components configure the infrastructure of your React-App as part of your React-Components.

21 lines (17 loc) 324 B
'use strict'; module.exports = function dispatch(promise, callback) { if (callback) { promise.then(result => { process.nextTick(() => { callback(null, result); }); }) .catch(e => { process.nextTick(() => { callback(e); }); }); return; } return promise; }