2023-07-11 19:35:15 +00:00
|
|
|
/*
|
|
|
|
|
* SPDX-License-Identifier: GPL-3.0
|
2023-07-13 19:03:13 +02:00
|
|
|
* Vesktop, a desktop app aiming to give you a snappier Discord Experience
|
2023-07-11 19:35:15 +00:00
|
|
|
* Copyright (c) 2023 Vendicated and Vencord contributors
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
export function isTruthy<T>(item: T): item is Exclude<T, 0 | "" | false | null | undefined> {
|
|
|
|
|
return Boolean(item);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function isNonNullish<T>(item: T): item is Exclude<T, null | undefined> {
|
|
|
|
|
return item != null;
|
|
|
|
|
}
|