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,6 @@
import { defangIPaddr } from '../../src/string/defanging-an-ip-address'
test('IP地址无效化', () => {
expect(defangIPaddr('1.1.1.1')).toBe('1[.]1[.]1[.]1')
expect(defangIPaddr('255.100.50.0')).toBe('255[.]100[.]50[.]0')
})