handlebars-helpers-lite
v0.2.1
Published
Common handlebars-helpers minimized and built with webpack.
Downloads
4,352
Maintainers
Readme
handlebars-helpers-lite
Common handlebars-helpers (source: handlebars-kit) minimized and built with webpack.
Usage
npm install --save handlebars-helpers-lite
npm install --save handlebars lodash moment # peerDependencies
import handlebars from "handlebars";
import {
math,
number,
date,
comparison,
array,
collection,
object,
string,
} from "handlebars-helpers-lite";
handlebars.registerHelper({
...math,
...number,
...date,
...comparison,
...array,
...collection,
...object,
...string,
});