Mask a string with a specified character from the end
The string to mask
The length of the string to mask
The character to use for masking. Default is '*'
The masked string
maskStringReverse('1234567890', 6) // '123456******' Copy
maskStringReverse('1234567890', 6) // '123456******'
Mask a string with a specified character from the end