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