UNPKG

sao-nm

Version:

Scaffolding out a node module.

8 lines (6 loc) 201 B
module.exports = function (input, options = {}) { if (typeof input !== 'string') { throw new TypeError('Expected input to be string') } return `${input} & ${options.postfix || 'rainbow'}` }