UNPKG

fale

Version:

Fale via terminal

8 lines (7 loc) 239 B
#!/usr/bin/env node const SaySomehting = require('say-something') const words = process.argv const phrase = words.slice(2).join(' ') saySomething = new SaySomehting({language: 'pt-br'}) saySomething.now(phrase) console.log('Fale', phrase)