UNPKG

generator-njsm

Version:
10 lines (7 loc) 218 B
'use strict'; module.exports = (input, {postfix = 'rainbows'} = {}) => { if (typeof input !== 'string') { throw new TypeError(`Expected a string, got ${typeof input}`); } return `${input} & ${postfix}`; };