
Product
Introducing Reports: An Extensible Reporting Framework for Socket Data
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.
Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays.
Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays.
Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your :heart: and support.
Install with npm:
$ npm install --save has-values
const has = require('has-values');
Create an isEmpty function by returning the inverse of the result from has-values:
const isEmpty = val => !has(val);
console.log(has(['a'])); //=> true
console.log(has([0])); //=> true
console.log(has([[[]]])); //=> false
console.log(has([[], []])); //=> false
console.log(has([])); //=> false
console.log(has(true)); //=> true
console.log(has(false)); //=> true
console.log(has(new Buffer())); //=> false
console.log(has(new Buffer('foo'))); //=> true
Dates are always true.
console.log(has(new Date())); //=> true
Returns false if err.message is an empty string.
console.log(has(new Error())); //=> false
console.log(has(new Error('foo'))); //=> true
Functions are always true.
console.log(has(function(foo) {})); //=> true
console.log(has(function() {})); //=> true
console.log(has(new Map())); //=> false
console.log(has(new Map([['foo', 'bar']]))); //=> true
null is always true, as it's assumed that this is a user-defined value, versus undefined which is not.
console.log(has(null)); //=> true
console.log(has({})); //=> false
console.log(has({ a: 'a' }})); //=> true
console.log(has({ foo: undefined })); //=> false
console.log(has({ foo: null })); //=> true
console.log(has(1)); //=> true
console.log(has(0)); //=> true
console.log(has(new RegExp())); //=> false
console.log(has(new RegExp('foo'))); //=> true
console.log(has(new Set())); //=> false
console.log(has(new Set(['foo', 'bar']))); //=> true
console.log(has('a')); //=> true
console.log(has('')); //=> false
console.log(has()); //=> false
console.log(has(void 0)); //=> false
console.log(has(undefined)); //=> false
regex and bufferMap and Setzero always returns truearray now recurses, so that an array of empty arrays will return falsenull now returns truePull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install && npm test
(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)
To generate the readme, run the following command:
$ npm install -g verbose/verb#dev verb-generate-readme && verb
You might also be interested in these projects:
Object constructor. | homepageJon Schlinkert
Copyright © 2018, Jon Schlinkert. Released under the MIT License.
This file was generated by verb-generate-readme, v0.6.0, on January 30, 2018.
Lodash is a popular utility library that provides a wide range of functions for manipulating and validating data. It includes methods like _.isEmpty, which can be used to check if a value is empty, similar to has-values.
Underscore is another utility library that offers a variety of functions for working with arrays, objects, and other data types. It includes the _.isEmpty method, which serves a similar purpose to has-values by checking if a value is empty.
Validator is a library focused on string validation and sanitization. It includes functions like isEmpty, which can be used to check if a string is empty, similar to the functionality provided by has-values.
FAQs
Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays.
The npm package has-values receives a total of 19,063,504 weekly downloads. As such, has-values popularity was classified as popular.
We found that has-values demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.