Write .words()

This commit is contained in:
marleyrae 2023-06-27 18:19:28 -07:00
parent 10d7c5a686
commit 76758547dc

View file

@ -21,5 +21,9 @@ _.inRange = function (num, start, end) {
return start <= num && num < end
}
/* --------------------------------------------------------------- words ---- */
_.words = (string) => string.split(' ')
// Do not write or modify code below this line.
module.exports = _