mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
10 lines
157 B
JavaScript
10 lines
157 B
JavaScript
const createUuidV4 = require('uuid/v4');
|
|
|
|
const uuid = {
|
|
create: function() {
|
|
return createUuidV4().replace(/-/g, '');
|
|
},
|
|
};
|
|
|
|
module.exports = { uuid };
|