UNPKG

npm-cards

Version:

Standard deck of cards from the CLI

11 lines (8 loc) 210 B
'use strict'; module.exports = function (str, opts) { if (typeof str !== 'string') { throw new TypeError('Expected a string'); } opts = opts || {}; return str + ' & ' + (opts.postfix || 'rainbows'); };