Node.js examples for Data Type:function
Checks if the given argument is a function
/**//from w w w. ja v a 2 s.c o m * Checks if the given argument is a function. * * @param func {*} The argument which will be validated. * @returns {boolean} * */ export function isFunction(func) { return typeof func === 'function'; }