250x250
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- nodejs
- xcode11
- react-native
- 경동
- 난방비절약
- 기름보일러
- __attribute__
- IOT
- rasppi3
- 가스비절약
- node.js
- todoist
- Swipes
- 린나이온도조절기
- ReactNative
- evernote
- anydo
- npm moment
- EditText
- 라온익스
- 네모안
- 온도조절기
- 에버노트
- debounce
- Raspberry Pi
- Node
- REACT
- 나비엔
- 가스요금폭탄
- 온도센서
Archives
- Today
- Total
어허
debounce - Promise 본문
728x90
export function debouncePromise(f, i) {
let t = null;
return (…args) => {
clearTimeout(t);
return new Promise(resolve => {
t = setTimeout(() => resolve(f(…args)), i);
});
};
}
출처 : stackoverflow 어딘가에서 보고 사용한건데 기억이 안남
728x90
Comments