We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b6fdbb9 + a6d8c6d commit 39198fdCopy full SHA for 39198fd
Source/Core/Core.js
@@ -65,7 +65,7 @@ for (var i in {toString: 1}) enumerables = null;
65
if (enumerables) enumerables = ['hasOwnProperty', 'valueOf', 'isPrototypeOf', 'propertyIsEnumerable', 'toLocaleString', 'toString', 'constructor'];
66
function forEachObjectEnumberableKey(object, fn, bind) {
67
if (enumerables) for (var i = enumerables.length; i--;){
68
- var k = enumberables[i];
+ var k = enumerables[i];
69
// signature has key-value, so overloadSetter can directly pass the
70
// method function, without swapping arguments.
71
if (hasOwnProperty.call(object, k)) fn.call(bind, k, object[k]);
0 commit comments