# is-js-object

> checks the given value is a js object

Latest version **1.2.2** (published 2015-11-25) · ISC license · 0 weekly downloads

## Install

```sh
npm install is-js-object
pnpm add is-js-object
yarn add is-js-object
bun add is-js-object
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.2.2 |
| Published | 2015-11-25 |
| First published | 2015-02-06 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | @joaquimserafim |
| Maintainers | quim |
| Keywords | verify, check, js, object |

## Links

- npm: https://www.npmjs.com/package/is-js-object
- Repository: https://github.com/joaquimserafim/is-js-object
- Issues: https://github.com/joaquimserafim/is-js-object/issues
- npm.io page: https://npm.io/package/is-js-object

## Alternatives

- [@mapbox/jsonlint-lines-primitives](https://npm.io/package/@mapbox/jsonlint-lines-primitives.md) — 5.3M weekly downloads
- [reftools](https://npm.io/package/reftools.md) — 3.5M weekly downloads
- [@hey-api/openapi-ts](https://npm.io/package/@hey-api/openapi-ts.md) — 3.5M weekly downloads
- [@mapbox/geojson-rewind](https://npm.io/package/@mapbox/geojson-rewind.md) — 2.4M weekly downloads
- [turbo-stream](https://npm.io/package/turbo-stream.md) — 1.7M weekly downloads

## Recent versions

- 1.2.2 (latest) — 2015-11-25
- 1.1.2 — 2015-11-09
- 1.0.0 — 2015-02-06

## README

# is-js-object

checks the given value is a js object

<a href="https://nodei.co/npm/is-js-object/"><img src="https://nodei.co/npm/is-js-object.png?downloads=true"></a>

[![Build Status](https://img.shields.io/badge/build-passing-brightgreen.svg?style=flat-square)](https://travis-ci.org/joaquimserafim/is-js-object)![Code Coverage 100%](https://img.shields.io/badge/code%20coverage-100%25-green.svg?style=flat-square)[![ISC License](https://img.shields.io/badge/license-ISC-blue.svg?style=flat-square)](https://github.com/joaquimserafim/is-js-object/blob/master/LICENSE)


## Usage

	var isJsObject = require('is-js-object');

	var obj1 = {text: 'Hello World!'};
	var obj2 = null;

	isJsObject(obj1);// should return true
	isJsObject(obj2);// should return false



## Development

##### this project has been set up with a precommit that forces you to follow a code style, no jshint issues and 100% of code coverage before commit


to run test
``` js
npm test
```

to run jshint
``` js
npm run jshint
```

to run code style
``` js
npm run code-style
```

to run check code coverage
``` js
npm run check-coverage
```

to open the code coverage report
``` js
npm run open-coverage
```

---
_Source: https://npm.io/package/is-js-object · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
