joplin/ReactNativeClient/lib/uuid.js

11 lines
141 B
JavaScript
Raw Normal View History

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