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