Package Exports
- are-objects
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (are-objects) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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
.