main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
625 bytes
|
Line | |
---|
1 | "use strict";
|
---|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
3 | var react_1 = require("react");
|
---|
4 | var useInterval = function (callback, delay) {
|
---|
5 | var savedCallback = react_1.useRef(function () { });
|
---|
6 | react_1.useEffect(function () {
|
---|
7 | savedCallback.current = callback;
|
---|
8 | });
|
---|
9 | react_1.useEffect(function () {
|
---|
10 | if (delay !== null) {
|
---|
11 | var interval_1 = setInterval(function () { return savedCallback.current(); }, delay || 0);
|
---|
12 | return function () { return clearInterval(interval_1); };
|
---|
13 | }
|
---|
14 | return undefined;
|
---|
15 | }, [delay]);
|
---|
16 | };
|
---|
17 | exports.default = useInterval;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.