sarcharstic
Version:
Simple npm para enviar textos
35 lines (24 loc) • 559 B
Markdown
> Simple npm para enviar textos sarcasticos
```
$ npm install --save sarcharstic
```
```js
const sch = require('sarcharstic')
let text = 'hola mundo'
sch.getsarcharstic(text)
///////////////////////////////////
const sch = require('sarcharstic')
let text2 = 'hola mundo'
sch.getMayus(text)
//////////////////////
const sch = require('sarcharstic')
let text3 = 'hola mundo'
sch.getMinus(text)
//Resultado:
//---> HoLa MuNdO
//---> HOLA MUNDO
//---> hola mundo
```