Skip to content

Commit

Permalink
reverted mistaken Object.create({}) to Object.create(null)
Browse files Browse the repository at this point in the history
  • Loading branch information
DxCx committed Oct 8, 2016
1 parent b93dd1a commit ac1d178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/execution/execute.js
Expand Up @@ -591,7 +591,7 @@ function observableForObject<T>(
(...values) => values.reduce((resolvedObject, value, i) => {
resolvedObject[keys[i]] = value;
return resolvedObject;
}, Object.create({}))
}, Object.create(null))
);
}

Expand Down

0 comments on commit ac1d178

Please sign in to comment.