1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/ReactNativeClient/lib/uuid.js

10 lines
157 B
JavaScript
Raw Normal View History

const createUuidV4 = require('uuid/v4');
2017-05-14 23:51:45 +02:00
const uuid = {
create: function() {
return createUuidV4().replace(/-/g, '');
2019-07-29 15:43:53 +02:00
},
};
2017-05-14 23:51:45 +02:00
2019-07-29 15:43:53 +02:00
module.exports = { uuid };