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.

18 lines
301 B

  1. 'use strict';
  2. var modulo = require('./modulo');
  3. // https://262.ecma-international.org/5.1/#sec-15.9.1.3
  4. module.exports = function DaysInYear(y) {
  5. if (modulo(y, 4) !== 0) {
  6. return 365;
  7. }
  8. if (modulo(y, 100) !== 0) {
  9. return 366;
  10. }
  11. if (modulo(y, 400) !== 0) {
  12. return 365;
  13. }
  14. return 366;
  15. };