UNPKG
@taro-hooks/ahooks
Version:
canary (2.0.0-beta-serro.5)
latest (2.2.0)
2.2.0
2.1.0
2.0.11
2.0.10
2.0.9
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
2.0.0-beta-serro.150
2.0.0-beta-serro.149
2.0.0-beta-serro.148
2.0.0-beta-serro.146
2.0.0-beta-serro.5
2.0.0-beta-serro.3
ahooks for Taro
innocces.github.io/taro-hooks/packages/ahooks
innocces/taro-hooks
@taro-hooks/ahooks
/
es
/
useLatest
/
index.js
7 lines
•
162 B
JavaScript
View Raw
1
2
3
4
5
6
7
import { useRef }
from
'@taro-hooks/core'
;
function
useLatest
(
value
)
{
var
ref
= useRef(
value
);
ref
.current =
value
;
return
ref
; } export
default
useLatest;