repositories
/
poolifier.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
TODO added
[poolifier.git]
/
lib
/
util.js
1
/**
2
* Contains utility functions
3
* @author Alessandro Pio Ardizio
4
* @since 0.0.1
5
*/
6
7
const
uuid
=
require
(
'uuid/v4'
)
8
/**
9
* Return an id to be associated to a node.
10
*/
11
module
.
exports
.
generateID
= () => {
12
return
uuid
()
13
}