* Return `true` if the parameter is a function. * * @param {function} func * @returns {boolean}
(func)
| 194 | * @returns {boolean} |
| 195 | */ |
| 196 | static isFunction(func) { |
| 197 | return typeof func === 'function'; |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * Return `true` is the string `str` contains the string `needle` |
no outgoing calls
no test coverage detected