blob: 82e2a7e4681a13d013e74c29c467fab318d0f267 (
plain)
1
2
3
4
5
6
7
|
exports.findLocaleId = function findLocaleId(str, type) {
if (type === 'num') {
return (str.match(/^NumberFormatSymbols_(.+)$/) || [])[1];
} else if (type == 'datetime') {
return (str.match(/^DateTimeSymbols_(.+)$/) || [])[1];
}
}
|