lbry-desktop/web/bundle-id.js

9 lines
153 B
JavaScript
Raw Normal View History

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