if-is-image
v1.0.6
Published
Check if a string, filepath, or url references an image file
Maintainers
Readme
if-is-image
Check if a string, filepath, or url references an image file.
Installation
With npm
npm install if-is-imageWith yarn
yarn add if-is-imageUsage
In a node project
Import the script to your project
import ifIsImage from 'if-is-image';
// or
const ifIsImage = require('if-is-image');And execute the script:
const isImage = ifIsImage('path/to/file'); // false
const isImage = ifIsImage('path/to/image.jpg'); // true
const isImage = ifIsImage('path/to/image.webp'); // true
const isImage = ifIsImage({}); // throw: Path to image must be a stringContributing
Fork the repo and clone locally, then run:
yarn installThis will install the devDependencies packages and build the lib folder.
Once you've made your desired changes, make sure to write any new tests for your feature and run the tests:
yarn run lint # lints js
yarn test # runs test suiteIf all tests pass, create a pull request.
