1
0
This commit is contained in:
2024-10-14 07:38:23 +02:00
parent c2196e11c9
commit 9af08e71fc
9 changed files with 193 additions and 309 deletions

View File

@@ -1,4 +1,4 @@
import { Comparer, MaybeAsyncComparer, AsyncComparer, MaybeAsyncIterator } from "./types.js";
import { Comparer, MaybeAsyncComparer, AsyncComparer } from "./types.js";
export function isDefined<T = any>(obj: T): obj is NonNullable<T> {
return obj !== undefined && obj !== null;