is-object-like-x

WebJar for is-object-like-x

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

is-object-like-x
Last Version

Last Version

1.6.0
Release Date

Release Date

Type

Type

jar
Description

Description

is-object-like-x
WebJar for is-object-like-x
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/Xotic750/is-object-like-x

Download is-object-like-x

How to add to project

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

Dependencies

compile (2)

Group / Artifact Type Version
org.webjars.npm : is-function-x jar [3.3.0,4)
org.webjars.npm : is-primitive jar [2.0.0,3)

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-object-like-x

Determine if a value is object like.

module.exports(value)boolean

Checks if value is object-like. A value is object-like if it's not a primitive and not a function.

Kind: Exported function
Returns: boolean - Returns true if value is object-like, else false.

Param Type Description
value * The value to check.

Example

import isObjectLike from 'is-object-like-x';

console.log(isObjectLike({})); // => true
console.log(isObjectLike([1, 2, 3])); // => true
console.log(isObjectLike(_.noop)); // => false
console.log(isObjectLike(null)); // => false

Versions

Version
1.6.0