diff --git a/lodash/_.js b/lodash/_.js index 5a13a4e..9c9880a 100644 --- a/lodash/_.js +++ b/lodash/_.js @@ -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 = _