(a)
| 127 | } |
| 128 | |
| 129 | function parseAlignmentX(a) { |
| 130 | if (a === null || a === undefined) return 0; |
| 131 | |
| 132 | return a.indexOf('left') > -1 ? -1 : a.indexOf('right') > -1 ? 1 : 0; |
| 133 | } |
| 134 | |
| 135 | function parseAlignmentY(a) { |
| 136 | if (a === null || a === undefined) return 0; |
no outgoing calls
no test coverage detected
searching dependent graphs…