(value)
| 30 | |
| 31 | // Check that value is defined and not null |
| 32 | function is_defined(value) { |
| 33 | return value !== null && value !== undefined; |
| 34 | } |
| 35 | |
| 36 | interface MarkScales { |
| 37 | x: LinearScale | OrdinalScale; |
no outgoing calls
no test coverage detected
searching dependent graphs…