1
0
Fork 0

[javascript] Completely reworked contracting

This commit is contained in:
Julien Dessaux 2023-09-18 22:48:08 +02:00
parent 3be4f0e9b4
commit 1b9a55432a
Signed by: adyxax
GPG key ID: F92E51B86E07177E
6 changed files with 112 additions and 176 deletions

View file

@ -0,0 +1,3 @@
export function waypointToSystem(waypoint) {
return waypoint.split('-').slice(0,2).join('-');
}