dtf
Simple and compact Date
formatting. Extracted from core-js. By default available english (en
) and russian (ru
) locales.
development version, production version
dtf
Token | Unit | Sample |
---|---|---|
s | Seconds | 0-59 |
ss | Seconds, 2 digits | 00-59 |
m | Minutes | 0-59 |
mm | Minutes, 2 digits | 00-59 |
h | Hours | 0-23 |
hh | Hours, 2 digits | 00-23 |
D | Date | 1-31 |
DD | Date, 2 digits | 01-31 |
W | Weekday, string | Вторник |
N | Month | 1-12 |
NN | Month, 2 digits | 01-12 |
M | Month, string | Ноябрь |
MM | Of month, string | Ноября |
Y | Year, full | 2014 |
YY | Year, 2 digits | 14 |
var dtf = ; // w/o modular system available as global `dtf` dtf; // => 'Friday, November 28, 14, 18:47:05'dtf; // => 'Friday, November 28, 14, 12:47:05' dtf; // => 'Пятница, 28 Ноября 2014 г., 18:07:25' // set default localedtf;dtf; // => 'Пятница, 28 Ноября 2014 г., 18:07:25' dtf; // => '28.11.14'dtf; // => '18:47:05'dtf; // => '28.11.2014 18:47:05'dtf; // => 'Пятница, 28 Ноября 2014 года'dtf; // => '28 Ноября, 16:47'dtf; // => 'Ноябрь 2014' dtf; // adds Date#format and Date#formatUTC methods to Date.prototype:dtf; ; // => 'Friday, November 28, 14, 18:47:05'; // => 'Friday, November 28, 14, 12:47:05' ; // => 'Пятница, 28 Ноября 2014 г., 18:07:25' dtf;; // => 'Пятница, 28 Ноября 2014 г., 18:07:25' ; // => '28.11.14'; // => '18:47:05'; // => '28.11.2014 18:47:05'; // => 'Пятница, 28 Ноября 2014 года'; // => '28 Ноября, 16:47'; // => 'Ноябрь 2014' // example adding new locale:dtf;
Changelog
1.0.0 - 2015.05.31
- publish