AK-21/Graphite-Industrial-Intelligence
0
1/*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */2let promise3 4module.exports = typeof queueMicrotask === 'function'5 ? queueMicrotask.bind(typeof window !== 'undefined' ? window : global)6 // reuse resolved promise, and allocate it lazily7 : cb => (promise || (promise = Promise.resolve()))8 .then(cb)9 .catch(err => setTimeout(() => { throw err }, 0))10 