is-blob

WebJar for is-blob

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

is-blob
Last Version

Last Version

2.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

is-blob
WebJar for is-blob
Project URL

Project URL

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

Source Code Management

https://github.com/sindresorhus/is-blob

Download is-blob

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/is-blob/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>is-blob</artifactId>
    <version>2.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/is-blob/
implementation 'org.webjars.npm:is-blob:2.1.0'
// https://jarcasting.com/artifacts/org.webjars.npm/is-blob/
implementation ("org.webjars.npm:is-blob:2.1.0")
'org.webjars.npm:is-blob:jar:2.1.0'
<dependency org="org.webjars.npm" name="is-blob" rev="2.1.0">
  <artifact name="is-blob" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='is-blob', version='2.1.0')
)
libraryDependencies += "org.webjars.npm" % "is-blob" % "2.1.0"
[org.webjars.npm/is-blob "2.1.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-blob Build Status

Check if a value is a Blob - File-like object of immutable, raw data

Blob is only available in the browser. In Node.js, it always returns false.

Install

$ npm install is-blob

Usage

const isBlob = require('is-blob');

isBlob(new Blob(['<h1>Unicorns</h1>'], {type: 'text/html'}));
//=> true

Related

  • is - Type check values

Versions

Version
2.1.0
2.0.1