Echo/node_modules/immediate/lib/queueMicrotask.js
2021-02-11 21:31:41 +08:00

11 lines
201 B
JavaScript

'use strict';
exports.test = function () {
return typeof global.queueMicrotask === 'function';
};
exports.install = function (func) {
return function () {
global.queueMicrotask(func);
};
};