Copyright 2015-2021 JC Fisher
isobject returns true when value is an object or function.
value
export default function isobject(value) { var type = typeof value; return !!value && (type == "object" || type == "function"); }