An open API service indexing awesome lists of open source software.

https://github.com/codewell/is-image

Determine if an object is an image
https://github.com/codewell/is-image

Last synced: 6 days ago
JSON representation

Determine if an object is an image

Awesome Lists containing this project

README

          

# @codewell/is-image
Determine if an object is an image

## Installation
```
npm install @codewell/is-image
```

## Basic usage
```JavaScript
import isImage from '@codewell/isImage';

const img = new Image();
isImage(img); // => true
isImage({}); // => false
```