| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Here the video: https://youtu.be/ejj8vUjOVog
const curry2 = fn => a => b => fn(a,b)
const lt = curry2((a,b) => a<b)
const is_greater_than_3 = lt(3)
is_greater_than_3(4) // true| Back | FazBrowse Home | New Git URL |