( expr: MathJsonExpression | null )
| 34 | } |
| 35 | |
| 36 | export function isStringObject( |
| 37 | expr: MathJsonExpression | null |
| 38 | ): expr is MathJsonStringObject { |
| 39 | return expr !== null && typeof expr === 'object' && 'str' in expr; |
| 40 | } |
| 41 | |
| 42 | export function isDictionaryObject( |
| 43 | expr: MathJsonExpression | null |
no outgoing calls
no test coverage detected