(d, string, i)
| 112699 | return n ? i + n[0].length : -1; |
| 112700 | } |
| 112701 | function parseUnixTimestamp(d, string, i) { |
| 112702 | var n = numberRe.exec(string.slice(i)); |
| 112703 | return n ? (d.Q = +n[0], i + n[0].length) : -1; |
| 112704 | } |
| 112705 | function parseUnixTimestampSeconds(d, string, i) { |
| 112706 | var n = numberRe.exec(string.slice(i)); |
| 112707 | return n ? (d.s = +n[0], i + n[0].length) : -1; |
nothing calls this directly
no outgoing calls
no test coverage detected