Skip to content

Commit

Permalink
IE 11 issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
yanwsh committed Jun 28, 2017
1 parent 7eff9b8 commit e7d7de4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/utils/merge-options.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export function isObject(value: any) {
*/
export function isPlain(value: any) {
return isObject(value) &&
toString.call(value) === '[object Object]' &&
Object.prototype.toString.call(value) === '[object Object]' &&
value.constructor === Object;
}

Expand Down

0 comments on commit e7d7de4

Please sign in to comment.