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 29, 2016
1 parent 5e112d5 commit 2f513c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/execution/execute.js
Expand Up @@ -592,7 +592,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 2f513c0

Please sign in to comment.