UNPKG

plop-helper-list

Version:
15 lines (11 loc) • 270 B
const helpers = plop => { plop.setDefaultInclude({helpers: true}) plop.setHelper("list", text => { const list = text .split(",") .map(e => e.trim()) .join(", ") return list }) } module.exports = helpers