* Mix properties into target object.
(to, _from)
| 146 | * Mix properties into target object. |
| 147 | */ |
| 148 | function extend (to, _from) { |
| 149 | for (var key in _from) { |
| 150 | to[key] = _from[key]; |
| 151 | } |
| 152 | return to |
| 153 | } |
| 154 | |
| 155 | /** |
| 156 | * Quick object check - this is primarily used to tell |
no outgoing calls
no test coverage detected