1.0.0 • Published 4 months ago
gibberlink v1.0.0
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
npm i gibberlink@latest
There are two functions:
- gibberlinkEncode(text) : Converts into gibberlink
- gibberlinkDecode(text) : Converts into english
Example Usage:
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:
Encoded: Hibellibo wiborlibd! || Decoded: Hello world!
1.0.0
4 months ago