MCPcopy Index your code
hub / github.com/angular-ui/ui-router / sortedKeys

Function sortedKeys

test/angular/1.2/angular.js:340–348  ·  view source on GitHub ↗
(obj)

Source from the content-addressed store, hash-verified

338}
339
340function sortedKeys(obj) {
341 var keys = [];
342 for (var key in obj) {
343 if (obj.hasOwnProperty(key)) {
344 keys.push(key);
345 }
346 }
347 return keys.sort();
348}
349
350function forEachSorted(obj, iterator, context) {
351 var keys = sortedKeys(obj);

Callers 2

forEachSortedFunction · 0.70
renderFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected