()
| 342 | } |
| 343 | |
| 344 | utcOffset() { |
| 345 | // Because a bug at FF24, we're rounding the timezone offset around 15 minutes |
| 346 | // https://github.com/moment/moment/pull/1871 |
| 347 | return -Math.round(this.$d.getTimezoneOffset() / 15) * 15 |
| 348 | } |
| 349 | |
| 350 | diff(input, units, float) { |
| 351 | const unit = Utils.p(units) |