()
| 95 | const options = Object.assign({}, defaultOpts, opts); |
| 96 | |
| 97 | const yScale = (): {}|undefined => { |
| 98 | if (options.zoomToFit) { |
| 99 | return {'zero': false}; |
| 100 | } else if (options.yAxisDomain != null) { |
| 101 | return {'domain': options.yAxisDomain}; |
| 102 | } |
| 103 | return undefined; |
| 104 | }; |
| 105 | |
| 106 | const sharedEncoding = { |
| 107 | x: { |
no outgoing calls
no test coverage detected
searching dependent graphs…