@davebaol/length-of
v1.0.0
Published
Get the number of items of an array, characters of a string or properties of an object; undefined otherwise
Downloads
9
Readme
length-of
Get the length of its argument, i.e. the number of items of an array, characters of a string or properties of an object; undefined otherwise.
Install with npm
npm i @davebaol/length-of --save
Usage
var lengthOf = require('@davebaol/length-of');
lengthOf({a: 'a', b: 'b'});
//=> 2
lengthOf('length-of');
//=> 9
lengthOf(['foo', 'bar']);
//=> 2
lengthOf(123);
//=> undefined
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Running tests
Install dev dependencies.
npm i -d && npm test
License
MIT © Davide Sessi