版博士V2.0程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12345
  1. export default (function (o, c) {
  2. c.prototype.isSameOrAfter = function (that, units) {
  3. return this.isSame(that, units) || this.isAfter(that, units);
  4. };
  5. });