UNPKG
solid-native
Version:
latest (0.1.2)
0.1.2
0.1.1
0.1.0
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Use solid.js to develop native mobile applications
solid-native.t6.fyi
tjjfvi/solid-native
solid-native
/
src
/
keyForProps.ts
8 lines
(6 loc)
•
177 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{ $propsKey }
from
"./symbols"
;
let
propsKeyN =
0
;
export
function
keyForProps
(
solidProps: any
) {
const
key = (solidProps[$propsKey] ??= propsKeyN++);
return
key; }