Merge branch 'develop' into avoid-exits-on-path

This commit is contained in:
Hanusiak Piotr
2022-02-16 14:03:48 +01:00
41 changed files with 707 additions and 382 deletions
+12
View File
@@ -0,0 +1,12 @@
export class StringUtils {
public static parsePointFromParam(param: string, separator: string = ","): { x: number; y: number } | undefined {
const values = param.split(separator).map((val) => parseInt(val));
if (values.length !== 2) {
return;
}
if (isNaN(values[0]) || isNaN(values[1])) {
return;
}
return { x: values[0], y: values[1] };
}
}