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