* Creates a function that invokes two functions and ignores their return vales. * * @param {function} one Function to invoke first. * @param {function} two Function to invoke second. * @return {function} Function that invokes the two argument functions. * @private
(one, two)
| 2661 | * @private |
| 2662 | */ |
| 2663 | function createChainedFunction(one, two) { |
| 2664 | return function chainedFunction() { |
| 2665 | one.apply(this, arguments); |
| 2666 | two.apply(this, arguments); |
| 2667 | }; |
| 2668 | } |
| 2669 | |
| 2670 | /** |
| 2671 | * Binds a method to the component. |
no outgoing calls
no test coverage detected