is-array-buffer-x

WebJar for is-array-buffer-x

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

is-array-buffer-x
Last Version

Last Version

1.7.0
Release Date

Release Date

Type

Type

jar
Description

Description

is-array-buffer-x
WebJar for is-array-buffer-x
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/Xotic750/is-array-buffer-x

Download is-array-buffer-x

How to add to project

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

Dependencies

compile (5)

Group / Artifact Type Version
org.webjars.npm : is-object-like-x jar [1.5.1,2)
org.webjars.npm : object-get-own-property-descriptor-x jar [3.2.0,4)
org.webjars.npm : to-string-tag-x jar [1.4.1,2)
org.webjars.npm : attempt-x jar [1.1.0,2)
org.webjars.npm : has-to-string-tag-x jar [1.4.1,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-array-buffer-x

Detect whether or not an object is an ArrayBuffer.

module.exports(object)boolean

Determine if an object is an ArrayBuffer.

Kind: Exported function
Returns: boolean - true if the object is an ArrayBuffer, else false`.

Param Type Description
object * The object to test.

Example

import isArrayBuffer from 'is-array-buffer-x';

console.log(isArrayBuffer(new ArrayBuffer(4))); // true
console.log(isArrayBuffer(null)); // false
console.log(isArrayBuffer([])); // false

Versions

Version
1.7.0