mirror of
https://github.com/cp6/my-idlers.git
synced 2024-11-16 23:42:32 +01:00
fd22b0bf58
V2 (Laravel re-make)
17 lines
299 B
JavaScript
Vendored
17 lines
299 B
JavaScript
Vendored
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
module.exports = {
|
|
versions: {},
|
|
nextTick(fn) {
|
|
const args = Array.prototype.slice.call(arguments, 1);
|
|
Promise.resolve().then(function () {
|
|
fn.apply(null, args);
|
|
});
|
|
}
|
|
};
|