UNPKG

mail-monkey

Version:

[![Build Status](https://travis-ci.org/ElderAS/mail-monkey.svg?branch=master&style=flat-square)](https://travis-ci.org/ElderAS/mail-monkey) [![npm](https://img.shields.io/npm/dt/mail-monkey.svg?style=flat-square)](https://www.npmjs.com/package/mail-monkey

12 lines (7 loc) 279 B
const handlebars = require('handlebars') module.exports = function(options = {}) { const { helpers = [], configure } = options helpers.forEach(helper => handlebars.registerHelper(helper.name, helper.function)) if (configure) configure(handlebars) return handlebars }