Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Remove sortedKeys() #10757

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/.jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
"manualUppercase": false,
"isArrayLike": false,
"forEach": false,
"sortedKeys": false,
"forEachSorted": false,
"reverseParams": false,
"nextUid": false,
Expand Down
7 changes: 1 addition & 6 deletions src/Angular.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
nodeName_: true,
isArrayLike: true,
forEach: true,
sortedKeys: true,
forEachSorted: true,
reverseParams: true,
nextUid: true,
Expand Down Expand Up @@ -272,12 +271,8 @@ function forEach(obj, iterator, context) {
return obj;
}

function sortedKeys(obj) {
return Object.keys(obj).sort();
}

function forEachSorted(obj, iterator, context) {
var keys = sortedKeys(obj);
var keys = Object.keys(obj).sort();
for (var i = 0; i < keys.length; i++) {
iterator.call(context, obj[keys[i]], keys[i]);
}
Expand Down
1 change: 0 additions & 1 deletion test/.jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"manualUppercase": false,
"isArrayLike": false,
"forEach": false,
"sortedKeys": false,
"reverseParams": false,
"nextUid": false,
"setHashKey": false,
Expand Down
7 changes: 0 additions & 7 deletions test/AngularSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -699,13 +699,6 @@ describe('angular', function() {
});


describe('sortedKeys', function() {
it('should collect keys from object', function() {
expect(sortedKeys({c:0, b:0, a:0})).toEqual(['a', 'b', 'c']);
});
});


describe('encodeUriSegment', function() {
it('should correctly encode uri segment and not encode chars defined as pchar set in rfc3986',
function() {
Expand Down
14 changes: 2 additions & 12 deletions test/helpers/testabilityPatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,19 +74,9 @@ afterEach(function() {


// copied from Angular.js
// we need these two methods here so that we can run module tests with wrapped angular.js
function sortedKeys(obj) {
var keys = [];
for (var key in obj) {
if (obj.hasOwnProperty(key)) {
keys.push(key);
}
}
return keys.sort();
}

// we need this method here so that we can run module tests with wrapped angular.js
function forEachSorted(obj, iterator, context) {
var keys = sortedKeys(obj);
var keys = Object.keys(obj).sort();
for (var i = 0; i < keys.length; i++) {
iterator.call(context, obj[keys[i]], keys[i]);
}
Expand Down