1.0.1 • Published 6 years ago

@buxlabs/is-image v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

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

License

MIT