secret-text
v2.0.3
Published
Encode any string to non-printable symbols
Downloads
14
Maintainers
Readme
Secret-Text
Hide any text without visible changes inside HTML DOM Node and get it back when needed.
Download
npm i -D secret-text
Examples
import secretText from "secret-text"
//insert secret string inside existing DOM element
let div = document.querySelector("div")
div.innerHTML += secretText.makeSecretText("hello world!")
//get secret string from existing DOM element
let originalStr = secretText.getSecretText(div.innerHTML) // 'hello world!'
- Before:
- After:
API
| Method | Argument Type | Return Type | Description | | ---------------------- | ------------- | ----------- | --------------------------------------------------------- | | makeSecretText( text ) | string | string | Returns secret text encrypted with non-printable symbols. | | getSecretText( text ) | string | string | Returns secret text from received text. |