Skip to main content
Module

x/denoflow/deps.ts>isObject

Configuration as Code, use YAML to write automated workflows that run on Deno, with any Deno modules, Typescript/Javascript codes
Latest
function isObject
import { isObject } from "https://deno.land/x/denoflow@0.0.35/deps.ts";

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.