UNPKG

alks

Version:
10 lines (9 loc) 202 B
export function sensitive( input: string | undefined, showCharacters: number = 4 ) { if (input === undefined) { return undefined; } return input.substring(0, showCharacters) + '******'; }