0.0.2 • Published 7 years ago

supa-images-loader v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

supa images loader

simple function for load images

install with npm

install supa-images-loader --save

install with yarn

yarn add supa-images-loader

example

import loadImages from 'supa-images-loader'

const div = document.querySelector('#example')

div.innerText = 'loading...'

loadImages(
 'https://ucarecdn.com/fd6c74d1-3c88-4f2c-8f81-48064132fd0d/-/resize/402x/',
 'https://ucarecdn.com/4a15dea0-4e61-4ee1-ac49-71d2daa6462e/-/resize/402x/',
 'https://ucarecdn.com/250cbd47-4779-4d15-9666-de9c0c9b2f84/-/resize/402x/'
).then(images => {
  div.innerText = ''

  return images
}).then(
  images => images
    .filter(([, error]) => !error)
    .forEach(([image]) => div.appendChild(image))
)
0.0.2

7 years ago

0.0.1

7 years ago