mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 00:58:12 +00:00
4 lines
134 B
TypeScript
4 lines
134 B
TypeScript
const latLongToJoinedString = (lat: number, long: number) => `${lat.toFixed(7)};${long.toFixed(7)}`
|
|
|
|
export { latLongToJoinedString }
|