1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-03 08:35:29 +02:00
joplin/ReactNativeClient/lib/uuid.js

11 lines
156 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, '');
}
}
2017-11-03 02:13:17 +02:00
module.exports = { uuid };