mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
11 lines
141 B
JavaScript
11 lines
141 B
JavaScript
import createUuidV4 from 'uuid/v4';
|
|
|
|
const uuid = {
|
|
|
|
create: function() {
|
|
return createUuidV4().replace(/-/g, '');
|
|
}
|
|
|
|
}
|
|
|
|
export { uuid }; |