UNPKG

marko

Version:

UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.

13 lines (10 loc) 163 B
module.exports = function repeatable(a, b) { if (a) { if (Array.isArray(a)) { a.push(b); return a; } return [a, b]; } return b; };