Files
frigate/web-old/src/utils/objectUtils.ts
Blake Blackshear bdebb99b5a Use new UI (#8983)
* fixup build

* swap frontends
2024-01-31 12:56:11 +00:00

1 line
104 B
TypeScript

export const isNullOrUndefined = (object?: unknown): boolean => object === null || object === undefined;