* 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)
| 29870 | * @private |
| 29871 | */ |
| 29872 | function createChainedFunction(one, two) { |
| 29873 | return function chainedFunction() { |
| 29874 | one.apply(this, arguments); |
| 29875 | two.apply(this, arguments); |
| 29876 | }; |
| 29877 | } |
| 29878 | |
| 29879 | /** |
| 29880 | * Binds a method to the component. |
no outgoing calls
no test coverage detected