import * as check from "../../../sync/check/function"; export function isFunction (mixed : any) : mixed is Function { return check.checkFunction(mixed) === undefined; }