/**
* Returns a Promise that resolves after at least one tick of the
* Macro Task Queue occurs.
*/exportvar waitForTick = function () {
returnnewPromise(function (resolve) {
setTimeout(function () { returnresolve(); }, 0);
});
};
//# sourceMappingURL=async.js.map