(key: string)
| 36 | |
| 37 | /** Returns true if the tag key is a system tag that should be hidden from users. */ |
| 38 | export const isSystemTag = (key: string): boolean => key.startsWith('__') || isCloudManagedTagKey(key); |
| 39 | |
| 40 | /** User-visible tags (system tags filtered out) as `{ key, value }` entries. */ |
| 41 | export const getUserTagEntries = (tags: Record<string, string>): { key: string; value: string }[] => |
no test coverage detected
searching dependent graphs…