UNPKG

begoo

Version:

Say something with style ;)

29 lines (27 loc) 677 B
#!/usr/bin/env node 'use strict' import { begoo } from './index.js' import taketalk from 'taketalk' (taketalk)({ init (input, options) { console.log(begoo(input, options)) }, help () { console.log([ '', ' Say something with style ;)', '', ' Usage', ' begoo <string>', ' begoo <string> --maxLength 8', ' begoo <string> --avatar name', ' Available names: cat, dog, chicken, monkey and tux', ' echo <string> | begoo', '', ' Example', ' begoo "Amin forked the code from Sindre"', begoo('Amin forked the code from Sindre') ].join('\n')) }, version: '2.0.2' })