$ cnpm install 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.
$ npm install is-image
const isImage = require('is-image');
isImage('source/unicorn.png');
//=> true
isImage('source/unicorn.txt');
//=> false
MIT © Sindre Sorhus
Copyright 2013 - present © cnpmjs.org | Home |