1 Date.parseInvariant = function Date$parseInvariant(value, formats) {
6 var e = Function._validateParams(arguments, [
7 {name: "value", type: String},
8 {name: "formats", mayBeNull: true, optional: true, parameterArray: true}
9 ]);
10 if (e) throw e;
11 return Date._parse(value, Sys.CultureInfo.InvariantCulture, arguments);
12 }