UNPKG

datility

Version:

Missing javascript Date object utilities

2 lines (1 loc) 353 B
Date.prototype.subtractDays=function(t){return this.setDate(this.getDate()-t),this};Date.prototype.subtractWeeks=function(t){return this.setDate(this.getDate()-t*7),this};Date.prototype.subtractMonths=function(t){return this.setMonth(this.getMonth()-t),this};Date.prototype.subtractYears=function(t){return this.setFullYear(this.getFullYear()-t),this};