Skip to content

Commit 457bc13

Browse files
committed
Merge pull request #1609 from apetrosian/master
update(objectKeys): replace iterator for consistency
2 parents 030f4df + 450faa0 commit 457bc13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function objectKeys(object) {
5555
}
5656
var result = [];
5757

58-
angular.forEach(object, function(val, key) {
58+
forEach(object, function(val, key) {
5959
result.push(key);
6060
});
6161
return result;

0 commit comments

Comments
 (0)