12 lines
192 B
JavaScript
12 lines
192 B
JavaScript
|
'use strict';
|
||
|
// IE8- don't enum bug keys
|
||
|
module.exports = [
|
||
|
'constructor',
|
||
|
'hasOwnProperty',
|
||
|
'isPrototypeOf',
|
||
|
'propertyIsEnumerable',
|
||
|
'toLocaleString',
|
||
|
'toString',
|
||
|
'valueOf'
|
||
|
];
|