@adtrackify/at-service-common 1.2.35 → 1.2.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.esm.js
CHANGED
|
@@ -9317,10 +9317,10 @@ var ClickIdDictionary = {
|
|
|
9317
9317
|
var parseClickId = (qsp) => {
|
|
9318
9318
|
if (!isEmpty(qsp)) {
|
|
9319
9319
|
for (const item of Object.entries(ClickIdDictionary)) {
|
|
9320
|
-
if (qsp?.[
|
|
9320
|
+
if (qsp.has(item?.[0])) {
|
|
9321
9321
|
return {
|
|
9322
9322
|
mktClickParam: item[0],
|
|
9323
|
-
mktClickId: qsp
|
|
9323
|
+
mktClickId: qsp.get(item[0]),
|
|
9324
9324
|
mktClickNetwork: item[1]
|
|
9325
9325
|
};
|
|
9326
9326
|
}
|