mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-30 18:00:56 +01:00
6 lines
160 B
TypeScript
6 lines
160 B
TypeScript
export const EMPTY_OBJECT_ID = '000000000000000000000000';
|
|
|
|
export const isZeroObjectId = (id: string): boolean => {
|
|
return !id || id === EMPTY_OBJECT_ID;
|
|
};
|