TC.unmask

Unmasks masked text.

TC.unmask(text);

Arguments

text. (string) The masked text.

Return value

A promise that is fulfilled with a string, which is the text after unmasking.

Example

Copy code
(async ()=>{
    let text = await TC.unmask("text");
})();