(ast: AST.AST, defaultStatus: number)
| 102 | * @category annotations |
| 103 | */ |
| 104 | export const getStatus = (ast: AST.AST, defaultStatus: number): number => |
| 105 | getAnnotation<number>(ast, AnnotationStatus) ?? defaultStatus |
| 106 | |
| 107 | /** |
| 108 | * @since 1.0.0 |
no test coverage detected
searching dependent graphs…