0.2.1 • Published 8 months ago

handlebars-helpers-lite v0.2.1

Weekly downloads
-
License
MIT
Repository
-
Last release
8 months ago

handlebars-helpers-lite

npm version License bundle size

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,
});