(d, string, i)
| 23131 | } |
| 23132 | |
| 23133 | function parseUnixTimestamp(d, string, i) { |
| 23134 | var n = numberRe.exec(string.slice(i)); |
| 23135 | return n ? (d.Q = +n[0], i + n[0].length) : -1; |
| 23136 | } |
| 23137 | |
| 23138 | function parseUnixTimestampSeconds(d, string, i) { |
| 23139 | var n = numberRe.exec(string.slice(i)); |
nothing calls this directly
no outgoing calls
no test coverage detected