UNPKG
redux-vertical
Version:
latest (2.1.0)
2.1.0
2.0.1
2.0.0
1.1.2
1.1.1
1.1.0
1.0.0
0.0.1
Build redux vertically
github.com/BerkeleyTrue/redux-vertical
BerkeleyTrue/redux-vertical
redux-vertical
/
src
/
combine-actions.ts
7 lines
(5 loc)
•
206 B
text/typescript
View Raw
1
2
3
4
5
6
7
import
constants
from
'./constants'
;
import
toString
from
'./utils/toString'
;
export
default
function
combineActions
(
...
types
:
string
[]
):
string
{
return
types.
map
(toString).
join
(constants.
separator
); }