Content deleted Content added
mNo edit summary |
mNo edit summary |
||
Line 32:
// documentation: http://www.quirksmode.org/js/introdate.html#parse
function date_parse(text) {
var matches = text.match(/^([0-9:]+), +([0-9]+) +([a-z]+) +([0-9]+)$/i);
if (!matches) return matches;
|