1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-30 08:26:59 +02:00
joplin/lib/uuid.js
2017-06-24 19:06:28 +01:00

11 lines
141 B
JavaScript

import createUuidV4 from 'uuid/v4';
const uuid = {
create: function() {
return createUuidV4().replace(/-/g, '');
}
}
export { uuid };