UNPKG

node-notes

Version:
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'); };