Skip to content

Commit a938192

Browse files
committed
All in one
1 parent fb2703a commit a938192

29 files changed

+42
-2321
lines changed

.gitignore

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,24 @@
1-
.idea/
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ linqes
1111
</div>
1212

1313
<p align="center">
14-
<img alt="dotnet-version" src="https://img.shields.io/badge/JavaScript-All-EEEE00.svg"/>
14+
<img alt="dotnet-version" src="https://img.shields.io/badge/JavaScript-ES6-EEEE00.svg"/>
1515
<img alt="dotnet-version" src="https://img.shields.io/badge/TypeScript-Declare-blue.svg"/>
16-
<img alt="npm" src="https://img.shields.io/badge/npm-v1.0.0-FF3300.svg"/>
16+
<img alt="npm" src="https://img.shields.io/badge/npm-v1.0.1-FF3300.svg"/>
1717
<img alt="license" src="https://img.shields.io/badge/license-MIT-FF00FF.svg"/>
1818
</p>
1919

index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@
564564
}
565565

566566
contains(value : T) : boolean;
567-
contains(value : T, comparer? : (left : T, right : T) => boolean) : boolean;
567+
contains(value : T, comparer : (left : T, right : T) => boolean) : boolean;
568568
contains(value : T, comparer? : (left : T, right : T) => boolean) : boolean {
569569
comparer ??= Object.is;
570570
for (const item of this) if (comparer(value, item)) return true;
@@ -1155,7 +1155,6 @@
11551155
ownPropertiesOf(PartialMap.prototype).forEach(name => {
11561156
defineProperty(Map.prototype, name, PartialMap.prototype[name])
11571157
})
1158-
11591158
ownPropertiesOf(PartialArray.prototype).forEach(name => {
11601159
defineProperty(Array.prototype, name, PartialArray.prototype[name])
11611160
})

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{
2-
"name" : "linqes",
3-
"version" : "1.0.0",
4-
"description" : "linq in es, automated extensions on prototype",
5-
"main" : "index.js",
6-
"types" : "index.d.ts",
7-
"author" : "Feast",
8-
"repository" : {
9-
"type" : "git",
10-
"url" : "https://github.com/feast107/linqes.git"
2+
"name": "linqes",
3+
"version": "1.0.1",
4+
"description": "linq in es, automated extensions on prototype",
5+
"main": "index.js",
6+
"types": "index.d.ts",
7+
"author": "Feast",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/feast107/linqes.git"
1111
},
12-
"homepage" : "https://github.com/feast107/linqes",
13-
"license" : "MIT",
14-
"keywords" : [
12+
"homepage": "https://github.com/feast107/linqes",
13+
"license": "MIT",
14+
"keywords": [
1515
"linq",
1616
"extension",
1717
"fluent",
1818
"list",
1919
"enumerable",
2020
"generator",
2121
"iterator"
22-
]
22+
],
2323
}

src/KeyedArray.d.ts

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/KeyedArray.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/KeyedArray.ts

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/implements/Enumerable.d.ts

Lines changed: 0 additions & 75 deletions
This file was deleted.

0 commit comments

Comments
 (0)