fallback-image
v1.0.11
Published
Load a fallback image if an image errors out
Downloads
2
Maintainers
Readme
fallback-image
Load a fallback image if an image errors out.
Installation
$ npm install fallback-image
Usage
import fallbackImage from 'fallback-image';
let imageEl = document.querySelector('img.horse-image');
fallbackImage(imageEl, './images/fallback-image.png');
Standalone
Generate a standalone build in dist
(for use with <script>
tags and AMD module loaders):
$ npm run build:standalone
Test
Tests are done with tape by running:
$ npm test