Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
123456789 |
- export default (function (o, c, d) {
- var proto = c.prototype;
-
- proto.isToday = function () {
- var comparisonTemplate = 'YYYY-MM-DD';
- var now = d();
- return this.format(comparisonTemplate) === now.format(comparisonTemplate);
- };
- });
|