Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
danrevah committed Nov 26, 2016
1 parent 6056e3d commit d76f158
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ this.items = [1, 2, 3, 4, 5, 6];

### every

Returns boolean value if every elements of the array fits the predicate
Returns true if every elements of the array fits the predicate otherwise false

Api: `array | every: predicate`

Expand All @@ -407,7 +407,7 @@ this.predicate = (value: any, index: number, array: any[]): boolean => {

### some

Returns boolean value if some elements of the array fits the predicate
Returns true if some elements of the array fits the predicate otherwise false

Api: `array | some: predicate`

Expand Down

0 comments on commit d76f158

Please sign in to comment.