Files
med-notes/.pnpm-store/v10/files/51/f1e3311f56691e370592733222b288b0bee87fb335d39484125a2aa3e3eefb7cb9617b3fa0eee56828014e9366506111e89dd45ec358c11d47c28f663b026e
2025-05-09 05:30:08 +02:00

23 lines
388 B
Plaintext

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
module.exports = {
/**
* @type {Record<string, string>}
*/
versions: {},
/**
* @param {function} fn function
*/
nextTick(fn) {
const args = Array.prototype.slice.call(arguments, 1);
Promise.resolve().then(function () {
fn.apply(null, args);
});
}
};