lbry-desktop/web/bundle-id.js

9 lines
153 B
JavaScript
Raw Normal View History

2020-10-02 20:16:37 +02:00
const { v4: uuid } = require('uuid');
2020-08-19 23:09:30 +02:00
const jsBundleId = uuid();
function getJsBundleId() {
return jsBundleId;
}
module.exports = { getJsBundleId };