| Current Path : /usr/local/lib/node_modules/@google/gemini-cli/node_modules/es-toolkit/dist/function/ |
| Current File : //usr/local/lib/node_modules/@google/gemini-cli/node_modules/es-toolkit/dist/function/ary.js |
'use strict';
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
function ary(func, n) {
return function (...args) {
return func.apply(this, args.slice(0, n));
};
}
exports.ary = ary;