(it)
| 8099 | return isExtensible(Object.preventExtensions({})); |
| 8100 | }); |
| 8101 | var setMeta = function(it){ |
| 8102 | setDesc(it, META, {value: { |
| 8103 | i: 'O' + ++id, // object ID |
| 8104 | w: {} // weak collections IDs |
| 8105 | }}); |
| 8106 | }; |
| 8107 | var fastKey = function(it, create){ |
| 8108 | // return primitive with prefix |
| 8109 | if(!isObject(it))return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it; |