Skip to content
On this page

hideMobile

Desensitization of mobile phone number.

Usage

ts
import { hideMobile } from '@use-kit/functions'

const phone = '12345678910'
const ret = hideMobile(phone)

// expect: "123****8910"
import { hideMobile } from '@use-kit/functions'

const phone = '12345678910'
const ret = hideMobile(phone)

// expect: "123****8910"

Released under the MIT License.