(value: any)
| 413 | } |
| 414 | |
| 415 | function isPrimitiveValue(value: any): boolean { |
| 416 | return ( |
| 417 | typeof value === 'string' || |
| 418 | typeof value === 'boolean' || |
| 419 | typeof value === 'number' || |
| 420 | value === null |
| 421 | ); |
| 422 | } |
| 423 | |
| 424 | /** |
| 425 | * Walk the TNode tree to find matches for the predicate. |
no outgoing calls
no test coverage detected
searching dependent graphs…