1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-30 08:26:59 +02:00
joplin/ReactNativeClient/lib/uuid.js
2017-11-03 00:13:17 +00:00

11 lines
156 B
JavaScript

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