Skip to content

Instantly share code, notes, and snippets.

@Tomyail
Created June 6, 2017 01:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tomyail/9214883c53054bc736555d33edf16cac to your computer and use it in GitHub Desktop.
Save Tomyail/9214883c53054bc736555d33edf16cac to your computer and use it in GitHub Desktop.
curry test created by Tomyail - https://repl.it/I7cW/0
var R = require('ramda');
var add = (b,str)=>str.split(b);
const curryAdd = R.curry(add);
curryAdd(" ")("2 1")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment