Skip to content

Commit

Permalink
New version with iterable protocol support
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaifm committed Apr 12, 2019
1 parent 856e4d2 commit c34abb2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## linq
This is a javascript implementation of the .NET [LINQ](https://msdn.microsoft.com/en-us/library/bb308959.aspx) library.

It contains all the origial .NET methods plus additional ones.
It contains all the original .NET methods plus a few additions.

### Installation

Expand Down
2 changes: 1 addition & 1 deletion linq.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@

hasNativeIteratorSupport: function () {
return typeof Symbol !== 'undefined' && typeof Symbol.iterator !== 'undefined';
},
}
};

// IEnumerator State
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "linq",
"author": "Mihai Ciuraru <mihaixc@gmail.com>",
"description": "linq.js - LINQ for JavaScript library packaged for node.js",
"version": "3.1.1",
"version": "3.2.0",
"homepage": "https://github.com/mihaifm/linq",
"repository": {
"type": "git",
Expand Down

0 comments on commit c34abb2

Please sign in to comment.