MCPcopy Index your code
hub / github.com/csev/py4e / d3_time_parseMonth

Function d3_time_parseMonth

code/pagerank/d3.v2.js:8835–8839  ·  view source on GitHub ↗
(date, string, i)

Source from the content-addressed store, hash-verified

8833});
8834
8835function d3_time_parseMonth(date, string, i) {
8836 d3_time_monthRe.lastIndex = 0;
8837 var n = d3_time_monthRe.exec(string.substring(i, i + 12));
8838 return n ? (date.m = d3_time_monthLookup.get(n[0].toLowerCase()), i += n[0].length) : -1;
8839}
8840
8841var d3_time_monthRe = /^(?:January|February|March|April|May|June|July|August|September|October|November|December)/ig;
8842

Callers

nothing calls this directly

Calls 1

getMethod · 0.45

Tested by

no test coverage detected