@buxlabs/is-image

Check if a filepath is an image

Usage no npm install needed!

<script type="module">
  import buxlabsIsImage from 'https://cdn.skypack.dev/@buxlabs/is-image';
</script>

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

License

MIT