(date, string, i)
| 8137 | return n ? i += n[0].length : -1; |
| 8138 | } |
| 8139 | function d3_time_parseWeekday(date, string, i) { |
| 8140 | d3_time_dayRe.lastIndex = 0; |
| 8141 | var n = d3_time_dayRe.exec(string.substring(i)); |
| 8142 | return n ? i += n[0].length : -1; |
| 8143 | } |
| 8144 | function d3_time_parseMonthAbbrev(date, string, i) { |
| 8145 | d3_time_monthAbbrevRe.lastIndex = 0; |
| 8146 | var n = d3_time_monthAbbrevRe.exec(string.substring(i)); |