@hidoo/handlebars-helpers
A helper library that summarizes commonly used functions in Handlebars.
Installation
$ npm install handlebars @hidoo/handlebars-helpers
Usage
import Handlebars from 'handlebars';
import * as helpers from '@hidoo/handlebars-helpers';
Object.entries(helpers).forEach(([name, helper]) =>
Handlebars.registerHelper(name, helper);
);
via register API:
import Handlebars from 'handlebars';
import register from '@hidoo/handlebars-helpers/register';
register(Handlebars);
Test
$ yarn test
License
MIT