UNPKG

seinfeld-quotes

Version:

Random quotes from the Seinfeld television show

14 lines (11 loc) 282 B
#!/usr/bin/env node 'use strict'; var meow = require('meow'); var quotes = require('./'); var cli = meow([ 'Examples', ' $ quotes', ' "How I wish you could make a living parallel parking. (George - The Parking Spot)"', '' ]); console.log(cli.flags.all ? quotes : quotes());