1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-04-20 11:28:40 +02:00

10 lines
157 B
JavaScript
Raw Normal View History

2018-03-09 17:49:35 +00:00
const createUuidV4 = require("uuid/v4");
2017-05-14 23:51:45 +02:00
const uuid = {
create: function() {
2018-03-09 17:49:35 +00:00
return createUuidV4().replace(/-/g, "");
},
};
2017-05-14 23:51:45 +02:00
2018-03-09 17:49:35 +00:00
module.exports = { uuid };