UNPKG

sao-nm

Version:

Scaffolding out a node module.

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