gibberlink
Version:
Use the Ai's Own language, gibberlink!
27 lines (20 loc) • 728 B
Markdown
# Gibberlink
So a video of 2 ai speaking in their own languange went viral so I made a package that can convert the ai language into english and english into gibberlink language
```bash
npm i gibberlink@latest
```
There are two functions:
- gibberlinkEncode(text) : Converts into gibberlink
- gibberlinkDecode(text) : Converts into english
Example Usage:
```js
const {gibberlinkEncode, gibberlinkDecode} = require("gibberlink");
const toEncode = "Hello world!"
const encoded = gibberlinkEncode(toEncode);
const decoded = gibberlinkDecode(encoded);
console.log(`Encoded: ${encoded} || Decoded: ${decoded}`)
```
And the output is:
```bash
Encoded: Hibellibo wiborlibd! || Decoded: Hello world!
```