UNPKG

useful-handlebars-helpers

Version:

More than 150 Handlebars helpers in 17 categories. Works in browsers and in Node.js.

18 lines (15 loc) 259 B
'use strict'; const helpers = module.exports; /** * Get the current year. * * ```handlebars * {{year}} * <!-- 2017 --> * ``` * @exposes year as year * @api public */ helpers.year = function() { return (new Date()).getUTCFullYear().toString(); };