(val)
| 9303 | ]; |
| 9304 | |
| 9305 | var isExcludedProto = function(val) { |
| 9306 | for (var i = 0; i < excludedPrototypes.length; ++i) { |
| 9307 | if (excludedPrototypes[i] === val) { |
| 9308 | return true; |
| 9309 | } |
| 9310 | } |
| 9311 | return false; |
| 9312 | }; |
| 9313 | |
| 9314 | if (es5.isES5) { |
| 9315 | var getKeys = Object.getOwnPropertyNames; |