(oneKeyObj)
| 19022 | * reuse those resolutions. |
| 19023 | */ |
| 19024 | var keyOf = function (oneKeyObj) { |
| 19025 | var key; |
| 19026 | for (key in oneKeyObj) { |
| 19027 | if (!oneKeyObj.hasOwnProperty(key)) { |
| 19028 | continue; |
| 19029 | } |
| 19030 | return key; |
| 19031 | } |
| 19032 | return null; |
| 19033 | }; |
| 19034 | |
| 19035 | module.exports = keyOf; |
| 19036 | },{}],161:[function(_dereq_,module,exports){ |
no outgoing calls
no test coverage detected
searching dependent graphs…