* @param {*} target * @param {*} source * @memberOf module:zrender/core/util
(target, source)
| 410 | * @memberOf module:zrender/core/util |
| 411 | */ |
| 412 | function extend(target, source) { |
| 413 | for (var key in source) { |
| 414 | if (source.hasOwnProperty(key)) { |
| 415 | target[key] = source[key]; |
| 416 | } |
| 417 | } |
| 418 | return target; |
| 419 | } |
| 420 | |
| 421 | /** |
| 422 | * @param {*} target |
no outgoing calls
no test coverage detected