9 lines
148 B
JavaScript
9 lines
148 B
JavaScript
|
const uuid = require('uuid/v4');
|
||
|
const jsBundleId = uuid();
|
||
|
|
||
|
function getJsBundleId() {
|
||
|
return jsBundleId;
|
||
|
}
|
||
|
|
||
|
module.exports = { getJsBundleId };
|