Latest
function default
import { default } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/isObject.js";

Checks if value is the language type of Object. (e.g. arrays, functions, objects, regexes, new Number(0), and new String(''))

Examples

_.isObject({}); // => true

_.isObject([1, 2, 3]); // => true

.isObject(.noop); // => true

_.isObject(null); // => false

Parameters

value

The value to check.