Skip to content

Instantly share code, notes, and snippets.

@kenpusney
Last active March 8, 2019 08:30
Show Gist options
  • Save kenpusney/ae15307a88903036434389051e9e8faa to your computer and use it in GitHub Desktop.
Save kenpusney/ae15307a88903036434389051e9e8faa to your computer and use it in GitHub Desktop.
const REPLACEMENT = "1234590"
const ORIGINAL = "lzeasgo"
const MATCHER = new RegExp("["+ORIGINAL+"]", "ig")
module.export = function (text) {
return text.replace(MATCHER, function(c) {
return REPLACEMENT.charAt(ORIGINAL.indexOf(c.toLowerCase()))
})
}
{
"name": "b14ckc0d3",
"version": "0.0.1",
"description": "Black code",
"main": "b14ckc0d3.js",
"author": "KimmyLeo <kenpusney@gmail.com>",
"license": "MIT"
}
@RainySeattle
Copy link

you can replace "v" with "7"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment