(object, el)
| 206 | return T; |
| 207 | }; |
| 208 | function keyOf(object, el){ |
| 209 | var O = toObject(object) |
| 210 | , keys = getKeys(O) |
| 211 | , length = keys.length |
| 212 | , index = 0 |
| 213 | , key; |
| 214 | while(length > index)if(O[key = keys[index++]] === el)return key; |
| 215 | } |
| 216 | |
| 217 | // Array |
| 218 | // array('str1,str2,str3') => ['str1', 'str2', 'str3'] |
nothing calls this directly
no test coverage detected