(input)
| 4690 | // MOMENTS |
| 4691 | |
| 4692 | function getSetQuarter(input) { |
| 4693 | return input == null |
| 4694 | ? Math.ceil((this.month() + 1) / 3) |
| 4695 | : this.month((input - 1) * 3 + (this.month() % 3)); |
| 4696 | } |
| 4697 | |
| 4698 | // FORMATTING |
| 4699 |
nothing calls this directly
no outgoing calls
no test coverage detected