()
| 18999 | |
| 19000 | // TODO: Use this.as('ms')? |
| 19001 | function valueOf$1 () { |
| 19002 | if (!this.isValid()) { |
| 19003 | return NaN; |
| 19004 | } |
| 19005 | return ( |
| 19006 | this._milliseconds + |
| 19007 | this._days * 864e5 + |
| 19008 | (this._months % 12) * 2592e6 + |
| 19009 | toInt(this._months / 12) * 31536e6 |
| 19010 | ); |
| 19011 | } |
| 19012 | |
| 19013 | function makeAs (alias) { |
| 19014 | return function () { |