array-mapcat
Advanced tools
Comparing version 0.1.0 to 0.1.1
# Change Log | ||
All notable changes to this project will be documented in this file (keepachangelog.com). | ||
## 0.1.1 - 2016-01-11 | ||
### Added | ||
- sentances => sentences | ||
## 0.1.0 - 2016-01-11 | ||
### Added | ||
- Initial Version. |
{ | ||
"name": "array-mapcat", | ||
"description": "Curried function deriving new array values by applying provided function to each item/index of provided array then applying `concat` to the results. Fast and compatible with modern or old browsers.", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"author": "Wil Moore III <wil.moore@wilmoore.com>", | ||
@@ -6,0 +6,0 @@ "bugs": { |
@@ -27,5 +27,5 @@ # array-mapcat | ||
var splitword = (sentance) => sentance.split(/\s+/) | ||
var sentances = [ 'two birds', 'three green peas' ] | ||
var sentences = [ 'two birds', 'three green peas' ] | ||
mapcat(splitword, sentances) | ||
mapcat(splitword, sentences) | ||
//=> ['two', 'birds', 'three', 'green', 'peas'] | ||
@@ -32,0 +32,0 @@ ``` |
6627