Skip to content

Commit

Permalink
Add Object.prototype members to builtin globals
Browse files Browse the repository at this point in the history
Resolves #3
  • Loading branch information
es128 committed Nov 25, 2014
1 parent 97904a5 commit 447e3c0
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions globals.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,23 @@
"URIError": false,
"Math": false,
"JSON": false,
"ArrayBuffer": false,
"Float32Array": false,
"Float64Array": false,
"Int16Array": false,
"Int32Array": false,
"Int8Array": false,
"Uint16Array": false,
"Uint32Array": false,
"Uint8Array": false,
"Uint8ClampedArray": false,
"ArrayBuffer": false,
"Float32Array": false,
"Float64Array": false,
"Int16Array": false,
"Int32Array": false,
"Int8Array": false,
"Uint16Array": false,
"Uint32Array": false,
"Uint8Array": false,
"Uint8ClampedArray": false,
"toString": false,
"hasOwnProperty": false,
"valueOf": false,
"propertyIsEnumerable": false,
"constructor": false,
"isPrototypeOf": false,
"toLocaleString": false
},
"es6": {
"Promise": false,
Expand Down

0 comments on commit 447e3c0

Please sign in to comment.