(images, onLoad)
| 11609 | } |
| 11610 | |
| 11611 | function ImageLoader(images, onLoad) { |
| 11612 | return new Promise(function (resolve, reject) { |
| 11613 | loadImages(images, onLoad).then(function (loadedImages) { |
| 11614 | var r = {}; |
| 11615 | loadedImages.forEach(function (curImage) { |
| 11616 | r[curImage.name] = { |
| 11617 | img: curImage.img, |
| 11618 | src: curImage.src |
| 11619 | }; |
| 11620 | }); |
| 11621 | |
| 11622 | resolve(r); |
| 11623 | }); |
| 11624 | }); |
| 11625 | } |
| 11626 | |
| 11627 | module.exports = exports["default"]; |
| 11628 |
nothing calls this directly
no test coverage detected