rich-97 / are-arrays

Function for check if all values are arrays.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

are-arrays

npm npm

Function for check if all values are arrays.

Installation

With the simple command npm install are-arrays.

Usage

The function takes any arguments as you want.

Example:

const areArrays = require('are-arrays');

areArrays({}, 12, [1, null]); // false
areArrays([], [1, 33.2]); // true
areArrays(function(){}, String(), []); // false

Test

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

License

MIT

About

Function for check if all values are arrays.

License:MIT License


Languages

Language:JavaScript 100.0%