Skip to content

Commit 9179c6c

Browse files
author
Artem Petrosian
committed
updated objectKeys iterator for consistency
1 parent cff83dd commit 9179c6c

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)