File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ array.Where("x => x.Name == 'Max'");
3030
3131Conclusion:
3232
33- * Works with multiple Browsers
33+ * Works with multiple Browsers (even IE)
3434* Angular Support (event directly in Views if using Strings as Expression-Syntax)
3535* Lightweight
3636* Fast
Original file line number Diff line number Diff line change 44 let actionFunction : Function = Linq4JS . Helper . ConvertFunction ( action ) ;
55
66 for ( let obj of that ) {
7- actionFunction ( obj ) ;
7+ let result = actionFunction ( obj ) ;
8+
9+ if ( result != null && result == true ) {
10+ break ;
11+ }
812 }
913
1014 return that ;
Original file line number Diff line number Diff line change 11{
22 "name" : " linq4js" ,
3- "version" : " 1.1.0 " ,
3+ "version" : " 1.1.1 " ,
44 "description" : " Linq methods for JavaScript/TypeScript for working with Arrays" ,
55 "main" : " dist/Linq4JS.js" ,
66 "typings" : " dist/Linq4JS.d.ts" ,
You can’t perform that action at this time.
0 commit comments