Skip to content

Commit 2969ca9

Browse files
committed
Merge branch 'main' into alpha
2 parents 2cab812 + d8d7e92 commit 2969ca9

File tree

3 files changed

+1008
-1902
lines changed

3 files changed

+1008
-1902
lines changed

index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,10 @@ export function empty<T>(array: ArrayLike<T>): boolean {
102102
return array.length === 0;
103103
}
104104

105+
export function notEmpty<T>(array: ArrayLike<T>): boolean {
106+
return array.length > 0;
107+
}
108+
105109
export function reverse<T>(array: ArrayLike<T>): T[] {
106110
return nativeReverse.call(array);
107111
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"typescript": "4.2.4"
3636
},
3737
"dependencies": {
38-
"@softwareventures/nullable": "^1.0.0 || ^1.0.0",
38+
"@softwareventures/nullable": "^1.0.0 || ^1.0.0 || ^1.2.1",
3939
"@softwareventures/ordered": "^0.2.0",
4040
"tslib": "^2.0.0"
4141
},

0 commit comments

Comments
 (0)