Files
Remote-Control-Center/mc_test/node_modules/async/apply.js
2025-11-25 09:56:15 +03:00

11 lines
217 B
JavaScript
Executable File

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