@hidoo/handlebars-helpers

1.1.0 • Public • Published

@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

Readme

Keywords

Package Sidebar

Install

npm i @hidoo/handlebars-helpers

Weekly Downloads

23

Version

1.1.0

License

MIT

Unpacked Size

39.1 kB

Total Files

37

Last publish

Collaborators

  • hidoo