Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michael-j-scofield/nibba
Convert normie text to ni🅱️🅱️a text
https://github.com/michael-j-scofield/nibba
nodejs nodejs-modules
Last synced: about 1 month ago
JSON representation
Convert normie text to ni🅱️🅱️a text
- Host: GitHub
- URL: https://github.com/michael-j-scofield/nibba
- Owner: Michael-J-Scofield
- Created: 2017-07-21T06:45:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-22T05:36:56.000Z (over 7 years ago)
- Last Synced: 2024-11-18T19:26:37.652Z (about 1 month ago)
- Topics: nodejs, nodejs-modules
- Language: JavaScript
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Nibba.js
Convert normie text to ni🅱️🅱️a text
## Installation
```
npm install nibba
```
## Usage### From the command line
Run the nibba.js from where you have it installed.
```
./nibba.js 'Is the big mac machine fixed?'
```
Tha result:
```
Is the 🅱️ig Ma🅱️ ma🅱️ine fixed?
```
### As node.js module
```javascript
var nibba = require('nibba');console.log(nibba.convert('Is the big mac machine fixed?')); //Is the 🅱️ig Ma🅱️ ma🅱️ine fixed?
```### Optional arguments
- mockify (default set to false)
*Example*
```javascript
nibba.convert('Is the big mac machine fixed?', mockify = true); //Is tHe 🅱️Ig mA🅱️ mA🅱️HiNe fIxEd?
```