UNPKG

picard-quotes

Version:

Quotes from the Legendary Jean-Luc Picard

13 lines (10 loc) 248 B
const picard = require('../lib'); picard.quotes((quotes) => { if (quotes) console.log(quotes); }); picard.quote((quote) => { if (quote) console.log(quote); }); picard.quote({number: 1}, (quote) => { if (quote) console.log(quote); });