0.0.3 • Published 2 years ago

@el3um4s/is-object v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

isObject

Checks if a value is an object

NPM link: @el3um4s/is-object

Install and use the package

To use the package in a project:

npm i @el3um4s/is-object

and then in a file:

import isObject from "@el3um4s/is-object";

const a = { hello: "world" };

console.log(isObject(a));
// true

const b = "hello world";
console.log(isObject(b));
// false