Untitled

 avatar
unknown
plain_text
a year ago
382 B
0
Indexable
function parallelHttpRequests(urls, limit, callback) {
  
  if(!urls.length){
      return
  }
  
    const arrayResponse = []
    let limitCount = 0
    
    const getData = (index) =>{ 
        const urlResponse = axios.get(urls[index]).then((res)=>{
            arrayResponse[index] = res.data
            ++limitCount
            getData(index + 1)     
        })
    } 
    
}
Editor is loading...
Leave a Comment