Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
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.
15 lines
544 B
15 lines
544 B
var $ = require('../internals/export');
|
|
var global = require('../internals/global');
|
|
var microtask = require('../internals/microtask');
|
|
var IS_NODE = require('../internals/engine-is-node');
|
|
|
|
var process = global.process;
|
|
|
|
// `queueMicrotask` method
|
|
// https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-queuemicrotask
|
|
$({ global: true, enumerable: true, noTargetGet: true }, {
|
|
queueMicrotask: function queueMicrotask(fn) {
|
|
var domain = IS_NODE && process.domain;
|
|
microtask(domain ? domain.bind(fn) : fn);
|
|
}
|
|
});
|
|
|