File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 13
13
<p align =" center " >
14
14
<img alt="dotnet-version" src="https://img.shields.io/badge/JavaScript-ES6-EEEE00.svg"/>
15
15
<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.4 -FF3300.svg"/>
16
+ <img alt="npm" src="https://img.shields.io/badge/npm-v1.0.5 -FF3300.svg"/>
17
17
<img alt="license" src="https://img.shields.io/badge/license-MIT-FF00FF.svg"/>
18
18
</p >
19
19
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " linqes" ,
3
- "version" : " 1.0.4 " ,
3
+ "version" : " 1.0.5 " ,
4
4
"description" : " linq in es, automated extensions on prototype" ,
5
5
"main" : " index.js" ,
6
6
"types" : " types/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -578,6 +578,8 @@ declare interface Array<T> {
578
578
*/
579
579
clear ( ) : void
580
580
581
+ concat ( source : IEnumerable < T > ) : IEnumerable < T >
582
+
581
583
/**
582
584
* Determines whether the array contains elements that match the conditions defined by the specified predicate.
583
585
* @param match The delegate that defines the conditions of the elements to search for.
@@ -621,6 +623,14 @@ declare interface Array<T> {
621
623
* @param index The zero-based index of the element to remove.
622
624
*/
623
625
removeAt ( index : number ) : T | undefined
626
+
627
+ join < TInner , TKey , TResult > (
628
+ inner : IEnumerable < TInner > ,
629
+ keySelector : ( item : T ) => TKey ,
630
+ innerKeySelector : ( item : TInner ) => TKey ,
631
+ resultSelector : ( outer : T , inner : TInner ) => TResult ,
632
+ comparer ? : ( ( outerKey : TKey , innerKey : TKey ) => boolean ) ) : IEnumerable < TResult >
633
+
624
634
}
625
635
626
636
/**
You can’t perform that action at this time.
0 commit comments