Skip to content
View karishma-mhatre's full-sized avatar
🎯
Focusing
🎯
Focusing
  • Paytm Insider
  • Bengaluru

Block or report karishma-mhatre

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Throttle fetch calls Throttle fetch calls
    1
    const CONCURRENT_CALLS_ALLOWED = 5;
    2
    var inProgressPromiseCount = 0;
    3
    var queue = [];
    4
    
                  
    5
    window.customFetch = (...args) => {
  2. Simple implementation of debounce fu... Simple implementation of debounce function in javascript
    1
    //Takes input params as out original function and milliseconds to wait.
    2
    const debounce = (fn, wait) => {
    3
        let timeout;
    4
    
                  
    5
        // returns a new function