7 lines
176 B
TypeScript
7 lines
176 B
TypeScript
export function isObjectId(id: string) {
|
|
return id.length === 32
|
|
}
|
|
|
|
export const buildModelTreeItemId = (projectId: string, fullName: string) =>
|
|
`${projectId}-${fullName}`
|