运维小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.js 246B

123456789
  1. export default (function (o, c, d) {
  2. var proto = c.prototype;
  3. proto.isToday = function () {
  4. var comparisonTemplate = 'YYYY-MM-DD';
  5. var now = d();
  6. return this.format(comparisonTemplate) === now.format(comparisonTemplate);
  7. };
  8. });