/length-of

Get the number of items of an array, characters of a string or properties of an object; undefined otherwise

Primary LanguageJavaScriptMIT LicenseMIT

length-of

npm version Build Status Codecove dependencies Status devDependencies Status License: MIT

Get 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