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