Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 264 Bytes

File metadata and controls

17 lines (13 loc) · 264 Bytes

@codewell/is-image

Determine if an object is an image

Installation

npm install @codewell/is-image

Basic usage

import isImage from '@codewell/isImage';

const img = new Image();
isImage(img); // => true
isImage({}); // => false