source: node_modules/es-toolkit/dist/compat/function/flip.mjs

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 130 bytes
RevLine 
[a762898]1function flip(func) {
2 return function (...args) {
3 return func.apply(this, args.reverse());
4 };
5}
6
7export { flip };
Note: See TracBrowser for help on using the repository browser.