UNPKG

246 BJavaScriptView Raw
1export default (function (o, c, d) {
2 var proto = c.prototype;
3
4 proto.isToday = function () {
5 var comparisonTemplate = 'YYYY-MM-DD';
6 var now = d();
7 return this.format(comparisonTemplate) === now.format(comparisonTemplate);
8 };
9});
\No newline at end of file