(value?: any)
| 7 | } from '../types'; |
| 8 | |
| 9 | export function isAst(value?: any): value is AstType { |
| 10 | return !!value?.$$mdtype; |
| 11 | } |
| 12 | |
| 13 | export function isFunction(value?: any): value is AstFunction { |
| 14 | return !!(value?.$$mdtype === 'Function'); |
no outgoing calls
no test coverage detected
searching dependent graphs…