10 lines
200 B
JavaScript
10 lines
200 B
JavaScript
|
|
||
|
|
||
|
var itemGetResolved = function( Cldr, path, attributes ) {
|
||
|
// Resolve path
|
||
|
var normalizedPath = pathNormalize( path, attributes );
|
||
|
|
||
|
return resourceGet( Cldr._resolved, normalizedPath );
|
||
|
};
|
||
|
|