npm.io
1.2.0 • Published 1 year ago

@hidoo/handlebars-helpers

Licence
MIT
Version
1.2.0
Deps
5
Size
43 kB
Vulns
0
Weekly
0

@hidoo/handlebars-helpers

A helper library that summarizes commonly used functions in Handlebars.

Installation

npm install --save 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

pnpm test

License

MIT

Keywords