* @memberOf module:zrender/core/util * @param {Function} func * @return {Function}
(func)
| 652 | * @return {Function} |
| 653 | */ |
| 654 | function curry(func) { |
| 655 | var args = nativeSlice.call(arguments, 1); |
| 656 | return function () { |
| 657 | return func.apply(this, args.concat(nativeSlice.call(arguments))); |
| 658 | }; |
| 659 | } |
| 660 | |
| 661 | /** |
| 662 | * @memberOf module:zrender/core/util |
no outgoing calls
no test coverage detected