words -package:text-zipper package:mono-traversable

Break up a textual sequence into a list of words, which were delimited by white space.
> words "abc  def ghi"
["abc","def","ghi"]
Join a list of textual sequences using seperating spaces.
> unwords ["abc","def","ghi"]
"abc def ghi"