array-typeof-values
TypeScript icon, indicating that this package has built-in type declarations

1.0.5 • Public • Published

array-typeof-values

Build Status version dependencies devDependencies

Gets the most specific common type of all the values in an array

TypeScript definitions included!

Installation

npm install array-typeof-values

Usage

var arrayTypeOfValues = require('array-typeof-values');

arrayTypeOfValues(['a', 'b', 'c']); // -> 'string'
arrayTypeOfValues(['a', 2, 'c']); // -> 'object'
arrayTypeOfValues([[1], ['b'], []]); // -> 'array'
arrayTypeOfValues([]); // -> undefined

License

MIT © https://github.com/DABH

Readme

Keywords

Package Sidebar

Install

npm i array-typeof-values

Weekly Downloads

1

Version

1.0.5

License

MIT

Unpacked Size

4.6 kB

Total Files

5

Last publish

Collaborators

  • dabh