(m)
| 3131 | } |
| 3132 | |
| 3133 | function getDateOffset (m) { |
| 3134 | // On Firefox.24 Date#getTimezoneOffset returns a floating point. |
| 3135 | // https://github.com/moment/moment/pull/1871 |
| 3136 | return -Math.round(m._d.getTimezoneOffset() / 15) * 15; |
| 3137 | } |
| 3138 | |
| 3139 | // HOOKS |
| 3140 |
no outgoing calls
no test coverage detected