index.js 165 B

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