/** * Checks whether a given function is empty or not. * @param {Function} aFunc - The function to be checked. * @returns {boolean} - True if the function is empty, false otherwise. * * @example * isEmptyFunction(Array.prototype.push); // -> false * isEmptyFunction(()=>{}); // -> true */ export function isEmptyFunction(aFunc: Function): boolean; export default isEmptyFunction;