We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7093c4a commit f025183Copy full SHA for f025183
README.md
@@ -9,7 +9,7 @@ The following example filters an array, sort the results and iterates the first
9
// With PowerArray:
10
peopleArray
11
.Where({ age: Between(18,70), gender: 'M' }) // filter
12
- .Sort{ lastName: Sort.AscendingIgnoringCase }) // sort
+ .Sort({ lastName: Sort.AscendingIgnoringCase }) // sort
13
.Take(10)
14
.RunEach(function(item, i) { console.debug(i + ' ' + item.name); } ); // do stuff
15
0 commit comments