* @memberOf module:zrender/core/util * @param {Object|Function} target * @param {Object|Function} sorce * @param {boolean} overlay
(target, source, overlay)
| 502 | * @param {boolean} overlay |
| 503 | */ |
| 504 | function mixin(target, source, overlay) { |
| 505 | target = 'prototype' in target ? target.prototype : target; |
| 506 | source = 'prototype' in source ? source.prototype : source; |
| 507 | |
| 508 | defaults(target, source, overlay); |
| 509 | } |
| 510 | |
| 511 | /** |
| 512 | * Consider typed array. |
no test coverage detected