* Create a Path class from path string data * @param {string} str * @param {Object} opts Other options
(str, opts)
| 15566 | * @param {Object} opts Other options |
| 15567 | */ |
| 15568 | function extendFromString(str, opts) { |
| 15569 | return Path.extend(createPathOptions(str, opts)); |
| 15570 | } |
| 15571 | |
| 15572 | /** |
| 15573 | * Merge multiple paths |
no test coverage detected