quarter.js 264 B

12345678910111213141516
  1. /**
  2. * gets date quarter
  3. */
  4. function quarter(date){
  5. var month = date.getMonth();
  6. if (month < 3) return 1;
  7. if (month < 6) return 2;
  8. if (month < 9) return 3;
  9. return 4;
  10. }
  11. module.exports = quarter;