/var/www/greso.tech/server/nsm/node_modules/es5-ext/date/#
NameSizeModeActions
copy.js1250644editdlrm
days-in-month.js2590644editdlrm
floor-day.js1380644editdlrm
floor-month.js1360644editdlrm
floor-year.js1430644editdlrm
format.js7550644editdlrm
index.js2450644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/es5-ext/date/#/days-in-month.js (259B)
"use strict"; var getMonth = Date.prototype.getMonth; module.exports = function () { switch (getMonth.call(this)) { case 1: return this.getFullYear() % 4 ? 28 : 29; case 3: case 5: case 8: case 10: return 30; default: return 31; } };