mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-04-14 03:41:07 +00:00
8 lines
245 B
JavaScript
8 lines
245 B
JavaScript
|
|
exports.findLocaleId = function findLocaleId(str, type) {
|
||
|
|
if (type === 'num') {
|
||
|
|
return (str.match(/^NumberFormatSymbols_(.+)$/) || [])[1];
|
||
|
|
} else if (type == 'datetime') {
|
||
|
|
return (str.match(/^DateTimeSymbols_(.+)$/) || [])[1];
|
||
|
|
}
|
||
|
|
}
|