Skip to content
View guamacherox's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report guamacherox

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. React hook for handling debounce usi... React hook for handling debounce using lodash debounce
    1
    import { useRef } from 'react';
    2
    import debounce from 'lodash/debounce';
    3
    import PropTypes from 'prop-types';
    4
    
    
    5
    function useDebounce(customFunction, t = 500) {
  2. React Hook for axios error interceptor React Hook for axios error interceptor
    1
    import { useEffect } from 'react';
    2
    import axios from 'axios';
    3
    
    
    4
    /**
    5
     * @description Hooks an axios error interceptor for your react application