Skip to content
Snippets Groups Projects
Commit 866d7f8d authored by Leo Balter's avatar Leo Balter Committed by Tom Care
Browse files

Improve isEnumerable check with a for-in loop for string names (#880)

parent 6c20a250
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,22 @@ function isConfigurable(obj, name) { ...@@ -11,7 +11,22 @@ function isConfigurable(obj, name) {
} }
function isEnumerable(obj, name) { function isEnumerable(obj, name) {
return Object.prototype.hasOwnProperty.call(obj, name) && var stringCheck;
if (typeof name === "string") {
for (var x in obj) {
if (x === name) {
stringCheck = true;
break;
}
}
} else {
// skip it if name is not string, works for Symbol names.
stringCheck = true;
}
return stringCheck &&
Object.prototype.hasOwnProperty.call(obj, name) &&
Object.prototype.propertyIsEnumerable.call(obj, name); Object.prototype.propertyIsEnumerable.call(obj, name);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment