UNPKG

juicy-emails

Version:

Send emails built from handlebars templates

11 lines (9 loc) 260 B
export const hashHelper = () => (...args) => { let { hash } = args.pop(); return hash || {}; }; export const concatHelper = () => (...args) => { let options = args.pop(); let separator = options.hash.separator || ''; return args.join(separator); };