is-image

Check if a file path is an image

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
is-image
8704.0.02 months ago8 years agoMinified + gzip package size for is-image in KB

Readme

is-image
Check if a file path is an image

It just checks the extension. Use image-type if you want to check the actual file.

Install

npm install is-image

Usage

import isImage from 'is-image';

isImage('source/unicorn.png');
//=> true

isImage('source/unicorn.txt');
//=> false

Related