Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

web.queue-microtask.js 544B

123456789101112131415
  1. var $ = require('../internals/export');
  2. var global = require('../internals/global');
  3. var microtask = require('../internals/microtask');
  4. var IS_NODE = require('../internals/engine-is-node');
  5. var process = global.process;
  6. // `queueMicrotask` method
  7. // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-queuemicrotask
  8. $({ global: true, enumerable: true, noTargetGet: true }, {
  9. queueMicrotask: function queueMicrotask(fn) {
  10. var domain = IS_NODE && process.domain;
  11. microtask(domain ? domain.bind(fn) : fn);
  12. }
  13. });