(to: Object, _from: ?Object)
| 221 | * Mix properties into target object. |
| 222 | */ |
| 223 | export function extend (to: Object, _from: ?Object): Object { |
| 224 | for (const key in _from) { |
| 225 | to[key] = _from[key] |
| 226 | } |
| 227 | return to |
| 228 | } |
| 229 | |
| 230 | /** |
| 231 | * Merge an Array of Objects into a single Object. |
no outgoing calls
no test coverage detected