The method that call the passed argument if it is a function
calliffn(function, ...args)
import calliffn from 'calliffn';
const hello = (...args) => args.join(' ');
calliffn(hello, 'Hello', 'World!'); // => 'Hello World!'
calliffn(null) // => undefined