Skip to content

Latest commit

 

History

History
53 lines (47 loc) · 1.08 KB

README.md

File metadata and controls

53 lines (47 loc) · 1.08 KB

del33t

Convert l33t word into arrays of all possible translations of said l33t word


Built for use in NodeJS although you can modify

module.exports = l33tify;

to

export default l33tify;

to use this in any JavaScript application.

Example usage:

const del33t = require('./del33t'); // Require the .js file
const strangeWord = "h0vs*";
console.log("Normal...ish words:", del33t(strangeWord));
/*
Normal...ish words: [
  'hovsi', 'hovsu',
  'hovsa', 'hovse',
  'hovsi', 'housi',
  'housu', 'hovsu',
  'housa', 'hovsa',
  'hovse', 'house' <-- found it
]
*/

Modifying for your own use

Letters are converted based on the dictionary. The dictionary is found in del33t.js and you can add or remove letter translations by adding or removing to the d1ct10n4ry object.

Default Dictionary

const d1ct10n4ry = {
    a: ["4", "@", '*'],
    b: ['8'],
    e: ['3', '*'],
    f: ['ph'],
    g: ['6'],
    i: ["1", "!", "l", "|", '*'],
    l: ["1", "!", "|"],
    o: ['0', '*'],
    s: ['5', 'z', '$'],
    t: ['7', '+'],
    u: ['v', '4', '*'],
}