leet-decode
npm module to convert a leet or 1337 string into a human-readable string.
Note that certain leet characters can be translated multiple ways, so this decode utility will return all possible permutations of the original string.
Install
npm install leet-decode
Use
const {decode} = require('leet-decode');
const result = decode('h3ll0');
// results -> ['hello']
See Also
License
MIT