(width, height, options = {})
| 810 | } |
| 811 | |
| 812 | _parseArgs(width, height, options = {}) { |
| 813 | |
| 814 | if (typeof width === 'object') { |
| 815 | options = width; |
| 816 | width = height = undefined; |
| 817 | } |
| 818 | else if (typeof height === 'object') { |
| 819 | options = height; |
| 820 | height = undefined; |
| 821 | } |
| 822 | return { width, height, options }; |
| 823 | } |
| 824 | |
| 825 | _position(renderer, lines, bounds, width, height) { |
| 826 |
no outgoing calls
no test coverage detected