UNPKG
handlebars-dateformat
Version:
latest (1.1.3)
1.1.3
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0
handlebars date format helper
github.com/tcort/handlebars-dateformat
tcort/handlebars-dateformat
handlebars-dateformat
/
index.js
8 lines
(5 loc)
•
202 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
'use strict'
;
var
moment =
require
(
'moment'
);
module
.
exports
=
function
dateFormat
(
date, format, utc
) {
return
(utc ===
true
) ?
moment
(date).
utc
().
format
(format) :
moment
(date).
format
(format); };