Package Exports
- helper-date
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (helper-date) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
helper-date 
Template helper for adding formatted dates with node-dateformat. Should work with any Handlebars, Lo-Dash, underscore, or any template engine that allows helper functions to be registered. Also compatible with verb, assemble and Template.
See node-dateformat for all available options.
Install
Install with npm
npm i helper-date --saveRun tests
npm testRegister the helper
This should work with any engine, here are a few examples
template
template.helper('date', require('helper-date'));assemble
assemble.helper('date', require('helper-date'));verb
verb.helper('date', require('helper-date'));handlebars
var handlebars = require('handlebars');
handlebars.registerHelper('date', require('helper-date'));Example usage
Handlebars:
{{date "MMMM DD, YYYY"}}Lo-Dash or Underscore:
<%= date("MMMM DD, YYYY") %>Verb (lo-dash, with special delimiters to avoid delimiter collision in documentation):
{%= date("MMMM DD, YYYY") %}Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Author
Jon Schlinkert
License
Copyright (c) 2014 Jon Schlinkert Released under the MIT license
This file was generated by verb on November 10, 2014.