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

11 lines
141 B
JavaScript
Raw Normal View History

2017-05-14 23:51:45 +02:00
import createUuidV4 from 'uuid/v4';
const uuid = {
create: function() {
return createUuidV4().replace(/-/g, '');
}
}
export { uuid };