Echo/node_modules/immediate/lib/queueMicrotask.js

11 lines
201 B
JavaScript
Raw Normal View History

2021-02-11 21:31:41 +08:00
'use strict';
exports.test = function () {
return typeof global.queueMicrotask === 'function';
};
exports.install = function (func) {
return function () {
global.queueMicrotask(func);
};
};