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.
12 lines
442 B
12 lines
442 B
// https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-09/sept-25.md#510-globalasap-for-enqueuing-a-microtask |
|
var $export = require('./_export'); |
|
var microtask = require('./_microtask')(); |
|
var process = require('./_global').process; |
|
var isNode = require('./_cof')(process) == 'process'; |
|
|
|
$export($export.G, { |
|
asap: function asap(fn) { |
|
var domain = isNode && process.domain; |
|
microtask(domain ? domain.bind(fn) : fn); |
|
} |
|
});
|
|
|