npm.io
2.0.3 • Published 5 years ago

secret-text

Licence
MIT
Version
2.0.3
Deps
0
Size
9 kB
Vulns
0
Weekly
0
Stars
1

Coverage Status Build Status

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: before
  • After: 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.

Keywords