* 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)
| 4944 | * @private |
| 4945 | */ |
| 4946 | function createChainedFunction(one, two) { |
| 4947 | return function chainedFunction() { |
| 4948 | one.apply(this, arguments); |
| 4949 | two.apply(this, arguments); |
| 4950 | }; |
| 4951 | } |
| 4952 | |
| 4953 | /** |
| 4954 | * Binds a method to the component. |
no outgoing calls
no test coverage detected
searching dependent graphs…