| 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; | |
| } ); | |
| 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; | |
| } ); | |