1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-03 08:35:29 +02:00
joplin/ReactNativeClient/lib/uuid.js
Laurent Cozic 55c5ddedf4 Revert "Applied prettier to code base"
This reverts commit c4f19465a6.
2018-03-09 20:59:12 +00:00

11 lines
156 B
JavaScript

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