File size: 238 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import { memoize } from 'lodash';
export default memoize( function ( src ) {
// This is a non-standard use of the Lodash memoize helper, used here to
// prevent multiple preloads for the same image.
new window.Image().src = src;
} );
|