* @return SVG Path data.
(shape)
| 71947 | |
| 71948 | |
| 71949 | function getPathData(shape) { |
| 71950 | // "d" follows the SVG convention. |
| 71951 | return shape && (shape.pathData || shape.d); |
| 71952 | } |
| 71953 | |
| 71954 | function hasOwnPathData(shape) { |
| 71955 | return shape && (hasOwn(shape, 'pathData') || hasOwn(shape, 'd')); |
no outgoing calls
no test coverage detected
searching dependent graphs…