paulpaterson_obsidian-proje.../node_modules/async/apply.js
2024-11-07 14:32:51 -06:00

11 lines
No EOL
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;