JSPM

@ifunc/flip

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q10257F
  • License MIT

flip first two arguments of a function

Package Exports

  • @ifunc/flip

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@ifunc/flip) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@ifunc/flip

flip first two arguments of a function

import flip from '@ifunc/flip';


flip(Array)('a', 'b') // ['b', 'a'];
flip(Math.pow)(2, 10) // 100
flip(console.log)(1, 2, 3) // 2, 1, 3