1 String.localeFormat = function String$localeFormat(format, args) {
6 var e = Function._validateParams(arguments, [
7 {name: "format", type: String},
8 {name: "args", mayBeNull: true, parameterArray: true}
9 ]);
10 if (e) throw e;
11 return String._toFormattedString(true, arguments);
12 }