Set same criteria for currency code validity in serializedtypes.js as currency.js.

This commit is contained in:
Stefan Thomas
2013-11-08 15:21:04 -08:00
parent 8dfdced942
commit 9652a99589

View File

@@ -44,7 +44,7 @@ function isHexInt64String(val) {
};
function isCurrencyString(val) {
return isString(val) && /^[A-Z]{3}$/.test(val);
return isString(val) && /^[A-Z0-9]{3}$/.test(val);
};
function isBigInteger(val) {