* Mix properties into target object.
(to, _from)
| 152 | * Mix properties into target object. |
| 153 | */ |
| 154 | function extend (to, _from) { |
| 155 | for (var key in _from) { |
| 156 | to[key] = _from[key]; |
| 157 | } |
| 158 | return to |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Quick object check - this is primarily used to tell |
no outgoing calls
no test coverage detected