mirror of
https://github.com/simon987/sist2.git
synced 2025-04-21 03:06:47 +00:00
8 lines
161 B
JavaScript
8 lines
161 B
JavaScript
|
|
export function formatBindAddress(address) {
|
|
if (address.startsWith("0.0.0.0")) {
|
|
return address.slice("0.0.0.0".length)
|
|
}
|
|
|
|
return address
|
|
} |