mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
7 lines
149 B
JavaScript
7 lines
149 B
JavaScript
export default function(polyPoints) {
|
|
return polyPoints
|
|
.replace(/[^e]-/, " -")
|
|
.split(/(?:\s+|\s*,\s*)/g)
|
|
.join(" ");
|
|
}
|