switch to ES modules
All checks were successful
Build Docker containers / Build (push) Successful in 47s

This commit is contained in:
2025-04-16 00:08:48 -04:00
parent e8095fce81
commit e025140ab4
4 changed files with 14 additions and 18 deletions

View File

@ -1,4 +1,4 @@
class NodeIdUtil {
export default class NodeIdUtil {
/**
* Converts the provided hex id to a numeric id, for example: !FFFFFFFF to 4294967295
@ -18,6 +18,4 @@ class NodeIdUtil {
}
}
module.exports = NodeIdUtil;
}

View File

@ -1,4 +1,4 @@
class PositionUtil {
export default class PositionUtil {
/**
* Obfuscates the provided latitude or longitude down to the provided precision in bits.
@ -61,6 +61,4 @@ class PositionUtil {
}
}
module.exports = PositionUtil;
}