1.0.0 • Published 7 years ago

are-objects v1.0.0

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

are-objects

Function for check if all values are objects.

Installation

With the simple command npm install are-objects.

Usage

The function takes any arguments as you want.

Example:

const areObjects = require('are-objects');

areObjects({}, 12, [1, null]); // false
areObjects([], {foo: false}); // true
areObjects(function(){}, String()); // false

Test

You should have installed globaly jasmine-node for test this package, then execute npm run test.

License

MIT

1.0.0

7 years ago