web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
259 B

  1. "use strict";
  2. var getMonth = Date.prototype.getMonth;
  3. module.exports = function () {
  4. switch (getMonth.call(this)) {
  5. case 1:
  6. return this.getFullYear() % 4 ? 28 : 29;
  7. case 3:
  8. case 5:
  9. case 8:
  10. case 10:
  11. return 30;
  12. default:
  13. return 31;
  14. }
  15. };