source:
node_modules/es-toolkit/dist/function/ary.mjs
| Last change on this file was a762898, checked in by , 5 months ago | |
|---|---|
|
|
| File size: 133 bytes | |
| Line | |
|---|---|
| 1 | function ary(func, n) { |
| 2 | return function (...args) { |
| 3 | return func.apply(this, args.slice(0, n)); |
| 4 | }; |
| 5 | } |
| 6 | |
| 7 | export { ary }; |
Note:
See TracBrowser
for help on using the repository browser.
