(value)
| 2291 | } |
| 2292 | |
| 2293 | function getSetMonth (value) { |
| 2294 | if (value != null) { |
| 2295 | setMonth(this, value); |
| 2296 | utils_hooks__hooks.updateOffset(this, true); |
| 2297 | return this; |
| 2298 | } else { |
| 2299 | return get_set__get(this, 'Month'); |
| 2300 | } |
| 2301 | } |
| 2302 | |
| 2303 | function getDaysInMonth () { |
| 2304 | return daysInMonth(this.year(), this.month()); |
nothing calls this directly
no test coverage detected