@berish/linq
Advanced tools
Comparing version 1.0.4 to 1.0.5
@@ -9,2 +9,3 @@ import * as collection from 'berish-collection'; | ||
static isLINQ(data: any): data is LINQ<any>; | ||
toArray(): T[]; | ||
clone(): LINQ<T>; | ||
@@ -11,0 +12,0 @@ equals(linq: any[]): boolean; |
@@ -18,2 +18,5 @@ "use strict"; | ||
} | ||
toArray() { | ||
return new Array(...this); | ||
} | ||
clone() { | ||
@@ -20,0 +23,0 @@ return this.slice(0); |
{ | ||
"name": "@berish/linq", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "LINQ - very usefull helper for working with arrays and collections", | ||
@@ -5,0 +5,0 @@ "main": "build/index.js", |
Sorry, the diff of this file is not supported yet
42438
286