UNPKG
statewave
Version:
latest (0.1.5)
0.1.5
0.1.4
0.1.3
0.1.2
0.1.0
Another Finite State Machine
github.com/ray-delossantos/statewave
ray-delossantos/statewave
statewave
/
src
/
immediate.ts
7 lines
(6 loc)
•
101 B
text/typescript
View Raw
1
2
3
4
5
6
7
export
function
immediate<S>(
state
: S) {
return
() =>
({
__immediate
:
true
, state, }); }