(it)
| 21249 | return D; |
| 21250 | }; |
| 21251 | var $getOwnPropertyNames = function getOwnPropertyNames(it) { |
| 21252 | var names = gOPN(toIObject(it)), |
| 21253 | result = [], |
| 21254 | i = 0, |
| 21255 | key; |
| 21256 | while (names.length > i) { |
| 21257 | if (!has(AllSymbols, key = names[i++]) && key != HIDDEN && key != META) result.push(key); |
| 21258 | }return result; |
| 21259 | }; |
| 21260 | var $getOwnPropertySymbols = function getOwnPropertySymbols(it) { |
| 21261 | var IS_OP = it === ObjectProto, |
| 21262 | names = gOPN(IS_OP ? OPSymbols : toIObject(it)), |