0.1.2 • Published 6 years ago

array-length v0.1.2

Weekly downloads
2
License
MIT
Repository
-
Last release
6 years ago

array-length

NOTE: array-length was renamed to @extra-array/length. NPM

Get length of array.

const length = require('array-length');
// length(<value>)

length(0);
// 0
length(null);
// 0
length(['d', 'c', '9']);
// 3