(obj: unknown)
| 126 | !!obj && typeof obj === 'object'; |
| 127 | |
| 128 | export const isScoped = (obj: unknown): obj is Scoped => |
| 129 | isScopable(obj) && typeof obj.scope === 'string'; |
| 130 | |
| 131 | export const isLabelable = (obj: unknown): obj is Labelable => |
| 132 | !!obj && typeof obj === 'object'; |
no test coverage detected
searching dependent graphs…