4 lines
124 B
JavaScript
4 lines
124 B
JavaScript
|
|
export default function (polyPoints) {
|
|
return polyPoints.replace(/[^e]-/, ' -').split(/(?:\s+|\s*,\s*)/g).join(' ');
|
|
}
|