Preface: All ramda functions are curried.
// split :: (String | RegExp) -> String -> [String]
Split takes in a String
or RegExp
as a separator, in this case
I only gave it the quotation marks which will serve as the separator; it
will split the string into letters.
Since this function is curried I can provide the String
later on.