azzztec / secret-text

Encode any string to non-printable symbols

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Coverage Status Build Status npm

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.

About

Encode any string to non-printable symbols

License:MIT License


Languages

Language:TypeScript 92.6%Language:JavaScript 7.4%