@buxlabs/is-image
v1.0.1
Published
Check if a filepath is an image
Downloads
5
Readme
is-image
Check if a filepath is an image
The package is very similar to image-type but it does not depend on built in path
and does not use const
or Set
. It makes it simpler to use it in older browsers without a transpilation step. It does not handle all of the edge cases as path.extname
does though.
Install
$ npm install @buxlabs/is-image
Usage
var isImage = require('@buxlabs/is-image');
isImage('src/foo.png'); // true
isImage('src/foo.txt'); // false
Related
- image-type - Detect the image type of a Buffer/Uint8Array
- image-extensions - List of image extensions
- is-text-path - Check if a filepath is a text file
- is-binary-path - Check if a filepath is a binary file
License
MIT