mirror of
https://github.com/simon987/sist2.git
synced 2025-04-20 10:46:45 +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
|
|
} |