MCPcopy Create free account
hub / github.com/microsoft/SandDance / parseShortMonth

Function parseShortMonth

docs/app/js/sanddance-app.js:112523–112526  ·  view source on GitHub ↗
(d, string, i)

Source from the content-addressed store, hash-verified

112521 return n ? (d.w = weekdayLookup.get(n[0].toLowerCase()), i + n[0].length) : -1;
112522 }
112523 function parseShortMonth(d, string, i) {
112524 var n = shortMonthRe.exec(string.slice(i));
112525 return n ? (d.m = shortMonthLookup.get(n[0].toLowerCase()), i + n[0].length) : -1;
112526 }
112527 function parseMonth(d, string, i) {
112528 var n = monthRe.exec(string.slice(i));
112529 return n ? (d.m = monthLookup.get(n[0].toLowerCase()), i + n[0].length) : -1;

Callers

nothing calls this directly

Calls 1

getMethod · 0.45

Tested by

no test coverage detected