mirror of
https://github.com/sussy-code/smov.git
synced 2026-03-30 22:48:54 +00:00
5 lines
119 B
TypeScript
5 lines
119 B
TypeScript
export function isNotNull<T>(obj: T | null): obj is T {
|
|
return obj != null;
|
|
}
|
|
|
|
export type ValuesOf<T> = T[keyof T];
|