(obj)
| 168 | var toString = Object.prototype.toString; |
| 169 | var OBJECT_STRING = '[object Object]'; |
| 170 | function isPlainObject (obj) { |
| 171 | return toString.call(obj) === OBJECT_STRING |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * Merge an Array of Objects into a single Object. |
no outgoing calls
no test coverage detected