All checks were successful
forgejo/romanjaros/portfolio/pipeline/head This commit looks good
5 lines
No EOL
136 B
TypeScript
5 lines
No EOL
136 B
TypeScript
export function notNil<TValue>(
|
|
value: TValue | null | undefined,
|
|
): value is TValue {
|
|
return value !== null && value !== undefined;
|
|
} |