Skip to content

Commit c34abb2

Browse files
committed
New version with iterable protocol support
1 parent 856e4d2 commit c34abb2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## linq
22
This is a javascript implementation of the .NET [LINQ](https://msdn.microsoft.com/en-us/library/bb308959.aspx) library.
33

4-
It contains all the origial .NET methods plus additional ones.
4+
It contains all the original .NET methods plus a few additions.
55

66
### Installation
77

linq.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111

112112
hasNativeIteratorSupport: function () {
113113
return typeof Symbol !== 'undefined' && typeof Symbol.iterator !== 'undefined';
114-
},
114+
}
115115
};
116116

117117
// IEnumerator State

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "linq",
33
"author": "Mihai Ciuraru <mihaixc@gmail.com>",
44
"description": "linq.js - LINQ for JavaScript library packaged for node.js",
5-
"version": "3.1.1",
5+
"version": "3.2.0",
66
"homepage": "https://github.com/mihaifm/linq",
77
"repository": {
88
"type": "git",

0 commit comments

Comments
 (0)