UNPKG
simple-swf
Version:
latest (0.4.0)
0.4.0
0.3.2
0.3.1
0.3.0
0.2.2
0.2.1-beta
0.2.0-beta
0.1.1-beta
0.1.0-beta
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Actually simple API layer for AWS SWF
simple-swf
/
src
/
util
/
buildIdentity.ts
7 lines
(5 loc)
•
195 B
text/typescript
View Raw
1
2
3
4
5
6
7
import
*
as
os
from
'os'
import
*
as
shortId
from
'shortid'
export
function
buildIdentity
(
prefix
:
string
):
string
{
return
[prefix, os.
hostname
(), process.
pid
, shortId.
generate
()].
join
(
'-'
) }