leettranslate
Version:
Converts texts from and to leetspeak to hack LLMs
52 lines (35 loc) • 1.03 kB
Markdown
# 1337translate
This is a package that translates strings from and to 1337speek.
For example:
```javascript
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`:
```javascript
console.log(
leettranslate.toleet('Hello, boys, girls and others!', {light: true})
)
```
returns
H3110, b0y5, gir15 4nd 07h3r5!
The other way around works, too:
```javascript
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 to `false`.
You can try it by calling `demo.js` on the commmand line.
Use it via npm:
```
npm -i leetranslate
```