EASYAIuniappNewUI/node_modules/licia/bind.js
2025-02-08 18:50:38 +08:00

9 lines
216 B
JavaScript

var restArgs = require('./restArgs');
exports = restArgs(function(fn, ctx, args) {
return restArgs(function(callArgs) {
return fn.apply(ctx, args.concat(callArgs));
});
});
module.exports = exports;