mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 22:05:14 +00:00
5 lines
120 B
JavaScript
5 lines
120 B
JavaScript
|
|
export default function (polyPoints) {
|
|
return polyPoints.replace(/-/, ' -').split(/(?:\s+|\s*,)\s*/g).join(' ');
|
|
}
|