Skip to content

Commit 9d260e8

Browse files
committed
addressed review comments
1 parent a16d324 commit 9d260e8

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

modules/sharedIdSystem.js

+3-9
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
* @requires module:modules/userId
66
*/
77

8-
import { parseUrl, buildUrl, triggerPixel, logInfo, hasDeviceAccess, generateUUID } from '../src/utils.js';
8+
import {buildUrl, generateUUID, hasDeviceAccess, logInfo, parseUrl, triggerPixel} from '../src/utils.js';
99
import {submodule} from '../src/hook.js';
10-
import { coppaDataHandler } from '../src/adapterManager.js';
10+
import {coppaDataHandler} from '../src/adapterManager.js';
1111
import {getStorageManager} from '../src/storageManager.js';
1212

1313
const MODULE_TYPE = 'fpid-module';
@@ -74,11 +74,6 @@ export const sharedIdSystemSubmodule = {
7474
*/
7575
name: 'sharedId',
7676
aliasName: 'pubCommonId',
77-
/**
78-
* Vendor id of prebid
79-
* @type {Number}
80-
*/
81-
gvlid: GVLID,
8277

8378
/**
8479
* decode the stored id value for passing to bid requests
@@ -93,8 +88,7 @@ export const sharedIdSystemSubmodule = {
9388
return undefined;
9489
}
9590
logInfo(' Decoded value PubCommonId ' + value);
96-
const idObj = {'pubcid': value};
97-
return idObj;
91+
return {'pubcid': value};
9892
},
9993
/**
10094
* performs action to obtain id

0 commit comments

Comments
 (0)