is-cwebp-readable
Check if a Buffer/Uint8Array is available for cwebp image source
const {readFileSync} = require('fs');
const isCwebpReadable = require('is-cwebp-readable');
isCwebpReadable(readFileSync('fixture.png'));
isCwebpReadable(readFileSync('fixture.bmp'));
Installation
Use npm.
npm install is-cwebp-readable
API
const isCwebpReadable = require('is-cwebp-readable');
isCwebpReadable(data)
data: Buffer
or Uint8Array
Return: boolean
It returns true
if the data is PNG, JPEG, TIFF, or WebP, otherwise false
.
License
Creative Commons Zero v1.0 Universal