File size: 251 Bytes
8d3471e
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
export function maskSecret(secret) {
    const value = String(secret ?? '')
    if (!value) {
        return ''
    }
    if (value.length <= 4) {
        return '*'.repeat(value.length)
    }
    return `${value.slice(0, 2)}****${value.slice(-2)}`
}