()
| 4217 | } |
| 4218 | |
| 4219 | function toArray() { |
| 4220 | var m = this; |
| 4221 | return [ |
| 4222 | m.year(), |
| 4223 | m.month(), |
| 4224 | m.date(), |
| 4225 | m.hour(), |
| 4226 | m.minute(), |
| 4227 | m.second(), |
| 4228 | m.millisecond(), |
| 4229 | ]; |
| 4230 | } |
| 4231 | |
| 4232 | function toObject() { |
| 4233 | var m = this; |
nothing calls this directly
no outgoing calls
no test coverage detected