Files
Julianum/node_modules/async/apply.js
Dinawo e5d6953e5e
All checks were successful
continuous-integration/drone/push Build is passing
chore: Update npm dependencies and package-lock.json
2024-07-06 17:01:34 +02: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;