* Mix properties into target object.
(to, _from)
| 239 | * Mix properties into target object. |
| 240 | */ |
| 241 | function extend (to, _from) { |
| 242 | for (var key in _from) { |
| 243 | to[key] = _from[key]; |
| 244 | } |
| 245 | return to |
| 246 | } |
| 247 | |
| 248 | /** |
| 249 | * Merge an Array of Objects into a single Object. |
no outgoing calls
no test coverage detected