UNPKG
@rs-box/ez-flow
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
Library for a workflow engine
github.com/rstanziale/ez-flow
rstanziale/ez-flow
@rs-box/ez-flow
/
dist
/
utils
/
lib-util.js
11 lines
(10 loc)
•
233 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
LibUtil
=
void
0
;
const
uuid =
require
(
"uuid"
);
class
LibUtil
{
static
getUUID
(
) {
return
uuid.
v4
(); } }
exports
.
LibUtil
=
LibUtil
;