diff --git a/src/util/maps.js b/src/util/maps.js index 81b9d7ee03..936c204c94 100644 --- a/src/util/maps.js +++ b/src/util/maps.js @@ -44,8 +44,10 @@ export const setMap = options => { if( obj[ key ] == null ){ obj[ key ] = {}; } - - obj = obj[ key ]; + + if (key !== '__proto__' && key !== 'constructor' && key !== 'prototype') { + obj = obj[ key ]; + } } else { // set the value obj[ key ] = options.value;