Newer
Older
alert / js / node_modules / dayjs / esm / plugin / isSameOrBefore / index.js
@Réz István Réz István on 18 Nov 2021 165 bytes first commit
export default (function (o, c) {
  c.prototype.isSameOrBefore = function (that, units) {
    return this.isSame(that, units) || this.isBefore(that, units);
  };
});