# validate.io-object

> Validates if a value is a JavaScript object.

Latest version **1.0.4** (published 2015-05-24) · MIT license · 0 weekly downloads

## Install

```sh
npm install validate.io-object
pnpm add validate.io-object
yarn add validate.io-object
bun add validate.io-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.0.4 |
| Published | 2015-05-24 |
| First published | 2014-08-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Athan Reines |
| Maintainers | kgryte |
| Keywords | validate.io, validator, validation, validate, valid, object, is, type, check, isobject |

## Links

- npm: https://www.npmjs.com/package/validate.io-object
- Repository: https://github.com/validate-io/object
- Homepage: https://github.com/validate-io/object#readme
- Issues: https://github.com/validate-io/object/issues
- npm.io page: https://npm.io/package/validate.io-object

## Dependencies (1)

- [validate.io-array](https://npm.io/package/validate.io-array.md) ^1.0.1

## Alternatives

- [memory-cache](https://npm.io/package/memory-cache.md) — 795.0K weekly downloads
- [@httptoolkit/proxy-agent](https://npm.io/package/@httptoolkit/proxy-agent.md) — 11.2K weekly downloads
- [express-cache-controller](https://npm.io/package/express-cache-controller.md) — 5.3K weekly downloads
- [http-cache-middleware](https://npm.io/package/http-cache-middleware.md) — 4.5K weekly downloads
- [cache2](https://npm.io/package/cache2.md) — 1.5K weekly downloads

## Recent versions

- 1.0.4 (latest) — 2015-05-24
- 1.0.3 — 2015-02-20
- 1.0.2 — 2015-02-20
- 1.0.1 — 2015-02-20
- 1.0.0 — 2014-09-01
- 0.0.1 — 2014-08-31
- 0.0.0 — 2014-08-30

## README

Object
======
[![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coverage][coveralls-image]][coveralls-url] [![Dependencies][dependencies-image]][dependencies-url]

> Validates if a value is a JavaScript object.



## Installation

``` bash
$ npm install validate.io-object
```

For use in the browser, use [browserify](https://github.com/substack/node-browserify).


## Usage

``` javascript
var isObject = require( 'validate.io-object' );
```


#### isObject( value )

Validates if a `value` is a JavaScript `object`.

``` javascript
var value = {};

var bool = isObject( value );
// returns true
```

__Note__: in this implementation, `arrays` and `null` are __not__ considered valid `objects`.


## Examples

``` javascript
console.log( isObject( {} ) );
// returns true

console.log( isObject( null ) );
// returns false

console.log( isObject( [] ) );
// returns false
```

To run the example code from the top-level application directory,

``` bash
$ node ./examples/index.js
```


## Tests

### Unit

Unit tests use the [Mocha](http://mochajs.org) test framework with [Chai](http://chaijs.com) assertions. To run the tests, execute the following command in the top-level application directory:

``` bash
$ make test
```

All new feature development should have corresponding unit tests to validate correct functionality.


### Test Coverage

This repository uses [Istanbul](https://github.com/gotwarlost/istanbul) as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:

``` bash
$ make test-cov
```

Istanbul creates a `./reports/coverage` directory. To access an HTML version of the report,

``` bash
$ make view-cov
```


---
## License

[MIT license](http://opensource.org/licenses/MIT). 


## Copyright

Copyright &copy; 2014-2015. Athan Reines.



[npm-image]: http://img.shields.io/npm/v/validate.io-object.svg
[npm-url]: https://npmjs.org/package/validate.io-object

[travis-image]: http://img.shields.io/travis/validate-io/object/master.svg
[travis-url]: https://travis-ci.org/validate-io/object

[coveralls-image]: https://img.shields.io/coveralls/validate-io/object/master.svg
[coveralls-url]: https://coveralls.io/r/validate-io/object?branch=master

[dependencies-image]: http://img.shields.io/david/validate-io/object.svg
[dependencies-url]: https://david-dm.org/validate-io/object

[dev-dependencies-image]: http://img.shields.io/david/dev/validate-io/object.svg
[dev-dependencies-url]: https://david-dm.org/dev/validate-io/object

[github-issues-image]: http://img.shields.io/github/issues/validate-io/object.svg
[github-issues-url]: https://github.com/validate-io/object/issues

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