An open API service indexing awesome lists of open source software.

https://github.com/herber/test-object

Test if var is an object.
https://github.com/herber/test-object

node object testing

Last synced: 2 months ago
JSON representation

Test if var is an object.

Awesome Lists containing this project

README

          

# test-object

> Test if var is an object.

## Install

```
$ npm install --save test-object
```

## Usage

```js
const testObject = require('test-object');

testObject('unicorns');
// false

testObject({ happiness: true });
// false
```

## License

MIT © [tobihrbr](https://tobihrbr.com)