jccp_a/vuepress/node_modules/async/apply.js
hellcat ac91e1fbe4 1
2025-11-12 17:57:30 +08:00

11 lines
217 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = function (fn, ...args) {
return (...callArgs) => fn(...args, ...callArgs);
};
module.exports = exports.default;