is-falsey-x

WebJar for is-falsey-x

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

is-falsey-x
Last Version

Last Version

1.0.3
Release Date

Release Date

Type

Type

jar
Description

Description

is-falsey-x
WebJar for is-falsey-x
Project URL

Project URL

https://www.webjars.org
Source Code Management

Source Code Management

https://github.com/Xotic750/is-falsey-x

Download is-falsey-x

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/is-falsey-x/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>is-falsey-x</artifactId>
    <version>1.0.3</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/is-falsey-x/
implementation 'org.webjars.npm:is-falsey-x:1.0.3'
// https://jarcasting.com/artifacts/org.webjars.npm/is-falsey-x/
implementation ("org.webjars.npm:is-falsey-x:1.0.3")
'org.webjars.npm:is-falsey-x:jar:1.0.3'
<dependency org="org.webjars.npm" name="is-falsey-x" rev="1.0.3">
  <artifact name="is-falsey-x" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='is-falsey-x', version='1.0.3')
)
libraryDependencies += "org.webjars.npm" % "is-falsey-x" % "1.0.3"
[org.webjars.npm/is-falsey-x "1.0.3"]

Dependencies

compile (1)

Group / Artifact Type Version
org.webjars.npm : to-boolean-x jar [1.0.2,2)

Project Modules

There are no modules declared in this project.

Travis status Dependency status devDependency status npm version jsDelivr hits bettercodehub score Coverage Status

is-falsey-x

Test if a given value is falsey.

module.exports(value)boolean

This method tests if a given value is falsey.

Kind: Exported function
Returns: boolean - true if the value is falsey: otherwise false.

Param Type Description
value * The value to test.

Example

import isFalsey from 'is-falsey-x';

console.log(isFalsey()); // true
console.log(isFalsey(0)); // true
console.log(isFalsey('')); // true
console.log(isFalsey(false)); // true
console.log(isFalsey(null)); // true

console.log(isFalsey(true)); // false
console.log(isFalsey([])); // false
console.log(isFalsey(1)); // false
console.log(isFalsey(function() {})); // false

Versions

Version
1.0.3
1.0.1