()
| 4542 | |
| 4543 | // TODO: Use this.as('ms')? |
| 4544 | function duration_as__valueOf () { |
| 4545 | return ( |
| 4546 | this._milliseconds + |
| 4547 | this._days * 864e5 + |
| 4548 | (this._months % 12) * 2592e6 + |
| 4549 | toInt(this._months / 12) * 31536e6 |
| 4550 | ); |
| 4551 | } |
| 4552 | |
| 4553 | function makeAs (alias) { |
| 4554 | return function () { |