Skip to content

el3um4s/is-object

Repository files navigation

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

About

Check if a value is an object

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

  •  

Packages

 
 
 

Contributors