1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-03-11 14:09:55 +02:00
2018-03-09 17:49:35 +00:00

10 lines
157 B
JavaScript

const createUuidV4 = require("uuid/v4");
const uuid = {
create: function() {
return createUuidV4().replace(/-/g, "");
},
};
module.exports = { uuid };