12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- var global = require('../internals/global');
- var bind = require('../internals/function-bind-context');
- var getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;
- var macrotask = require('../internals/task').set;
- var IS_IOS = require('../internals/engine-is-ios');
- var IS_IOS_PEBBLE = require('../internals/engine-is-ios-pebble');
- var IS_WEBOS_WEBKIT = require('../internals/engine-is-webos-webkit');
- var IS_NODE = require('../internals/engine-is-node');
- var MutationObserver = global.MutationObserver || global.WebKitMutationObserver;
- var document = global.document;
- var process = global.process;
- var Promise = global.Promise;
- var queueMicrotaskDescriptor = getOwnPropertyDescriptor(global, 'queueMicrotask');
- var queueMicrotask = queueMicrotaskDescriptor && queueMicrotaskDescriptor.value;
- var flush, head, last, notify, toggle, node, promise, then;
- if (!queueMicrotask) {
- flush = function () {
- var parent, fn;
- if (IS_NODE && (parent = process.domain)) parent.exit();
- while (head) {
- fn = head.fn;
- head = head.next;
- try {
- fn();
- } catch (error) {
- if (head) notify();
- else last = undefined;
- throw error;
- }
- } last = undefined;
- if (parent) parent.enter();
- };
-
-
- if (!IS_IOS && !IS_NODE && !IS_WEBOS_WEBKIT && MutationObserver && document) {
- toggle = true;
- node = document.createTextNode('');
- new MutationObserver(flush).observe(node, { characterData: true });
- notify = function () {
- node.data = toggle = !toggle;
- };
-
- } else if (!IS_IOS_PEBBLE && Promise && Promise.resolve) {
-
- promise = Promise.resolve(undefined);
-
- promise.constructor = Promise;
- then = bind(promise.then, promise);
- notify = function () {
- then(flush);
- };
-
- } else if (IS_NODE) {
- notify = function () {
- process.nextTick(flush);
- };
-
-
-
-
-
-
- } else {
-
- macrotask = bind(macrotask, global);
- notify = function () {
- macrotask(flush);
- };
- }
- }
- module.exports = queueMicrotask || function (fn) {
- var task = { fn: fn, next: undefined };
- if (last) last.next = task;
- if (!head) {
- head = task;
- notify();
- } last = task;
- };
|