mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
12 lines
272 B
JavaScript
12 lines
272 B
JavaScript
// SHOULD BE MOVED TO CONTEXT
|
|
|
|
module.exports = function() {
|
|
function s4() {
|
|
return Math.floor((1 + Math.random()) * 0x10000)
|
|
.toString(16)
|
|
.substring(1);
|
|
}
|
|
|
|
return s4() + s4() + '-' + s4() + '-' + s4() + '-' + s4() + '-' + s4() + s4() + s4();
|
|
}
|