is-float-array

WebJar for is-float-array

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

is-float-array
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

is-float-array
WebJar for is-float-array
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/dy/is-float-array

Download is-float-array

How to add to project

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

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

is-float-array Build Status unstable

Test if an array can store floats. In particular, Float32Array, Float64Array and Array are detected as float arrays.

Usage

npm install is-float-array

var isFloat = require('is-float-array');

isFloat(Array(10)) // true
isFloat(new Float32Array(10)) // true
isFloat(new Float64Array(10)) // true
isFloat(new Uint8Array(10)) // false

License

© 2018 Dmitry Yv. MIT License.

Versions

Version
1.0.0