1.0.0 • Published 6 months ago
leettranslate v1.0.0
1337translate
This is a package that translates strings from and to 1337speek.
For example:
console.log(
leettranslate.toleet('Hello, boys, girls and others!')
)
Will return:
H3110, 80y5, 9!r15 4nd 07h3r5!
You can also set a light
mode that will not replace b
,g
,i
and z
:
console.log(
leettranslate.toleet('Hello, boys, girls and others!', {light: true})
)
returns
H3110, b0y5, gir15 4nd 07h3r5!
The other way around works, too:
console.log(
leettranslate.totext('H3ll0, w0rld!', {light: true})
);
returns
Hello, world!
You call the functionality with the translate.toleet()
and translate.totext()
methods, each taking parameters:
text
- the text to translate (mandatory)modes
- an object to set different modes (optional):light
- Boolean to turn on light mode (no replacement of b,g,i and z) - pre-set tofalse
.
You can try it by calling demo.js
on the commmand line.
Use it via npm:
npm -i leetranslate