Skip to content

Instantly share code, notes, and snippets.

View vinitshahdeo's full-sized avatar
🚀
Putting "Tech" into FinTech at Novo

Vinit Shahdeo vinitshahdeo

🚀
Putting "Tech" into FinTech at Novo
View GitHub Profile

CODE OF CONDUCT

Objective:

  • My main objective is to build a community where there is no harassment and each and every member of the community is benefited from it. I will ensure that each and every member of the community gets the required platform to how case his/her skills and excel in their future.

Scope:

  • The scope of this Code of Conduct applies not only within the community, but also to each and every individual who represents the community in public areas in any platform.

Enforcement Responsibilities:

  • The community leaders should be responsible to take appropriate steps against any wrong, inappropriate and harmful activities that are against the Code of Conduct.
@nzvtrk
nzvtrk / memoizeDebounce.js
Last active October 6, 2022 12:58
Memoized debounce using lodash for async fetching
import { debounce } from 'lodash';
import axios from 'axios';
// or vanilla debounce
// const debounce = (func, timeOut) => {
// let timer
//
// return (...args) => {
// if (timer) clearTimeout(timer)
// timer = setTimeout(func, timeOut)