has-value (0.3.1)

Published 2026-02-24 13:57:37 +00:00 by atheaadmin

Installation

registry=
npm install has-value@0.3.1
"has-value": "0.3.1"

About this package

has-value NPM version NPM downloads Build Status

Returns true if a value exists, false if empty. Works with deeply nested values using object paths.

Install

Install with npm:

$ npm install has-value --save

Works for:

  • booleans
  • functions
  • numbers (pass true as the last arg to treat zero as a value instead of falsey)
  • strings
  • nulls
  • object
  • arrays

Usage

Works with nested object paths or a single value:

var hasValue = require('has-value');

hasValue({a: {b: {c: 'foo'}}} 'a.b.c');
//=> true

hasValue('a');
//=> true

hasValue('');
//=> false

hasValue(1);
//=> true

hasValue(0);
//=> false

hasValue(0, true); // pass `true` as the last arg to treat zero as a value
//=> true

hasValue({a: 'a'}});
//=> true

hasValue({}});
//=> false

hasValue(['a']);
//=> true

hasValue([]);
//=> false

hasValue(function(foo) {}); // function length/arity
//=> true

hasValue(function() {});
//=> false

hasValue(true);
hasValue(false);
//=> true

isEmpty

To do the opposite and test for empty values, do:

function isEmpty(o, isZero) {
  return !hasValue.apply(hasValue, arguments);
}

You might also be interested in these projects:

  • get-object: Get a property from an object using dot (object path) notation. | homepage
  • get-property: Get a nested property or its value from an object using simple a.b.c paths. | homepage
  • get-value: Use property paths (a.b.c) to get a nested value from an object. | homepage
  • set-value: Create nested values and any intermediaries using dot notation ('a.b.c') paths. | homepage

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Building docs

Generate readme and API documentation with verb:

$ npm install verb && npm run docs

Or, if verb is installed globally:

$ verb

Running tests

Install dev dependencies:

$ npm install -d && npm test

Author

Jon Schlinkert

License

Copyright © 2016, Jon Schlinkert. Released under the MIT license.


This file was generated by verb, v, on March 27, 2016.

Dependencies

Dependencies

ID Version
get-value ^2.0.3
has-values ^0.1.4
isobject ^2.0.0

Development Dependencies

ID Version
gulp-format-md ^0.1.7
mocha ^2.4.5

Keywords

array boolean empty find function has hasOwn javascript js key keys node.js null number object properties property string type util utilities utility value
Details
npm
2026-02-24 13:57:37 +00:00
0
Jon Schlinkert
MIT
2.5 KiB
Assets (1)
Versions (2) View all
0.3.1 2026-02-24
1.0.0 2026-02-24