IP地址无效化

This commit is contained in:
2020-05-19 06:03:33 +08:00
parent 34a76e22b9
commit 32fd589c3f
4 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,7 @@
/**
* @param {string} address
* @return {string}
*/
export const defangIPaddr = function (address) {
return address.replace(/\./g, '[.]')
}