factorial-pixel 0.9.0 → 0.10.0
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/CHANGELOG.md +4 -0
- package/__tests__/pixelUrl.spec.js +84 -0
- package/__tests__/requestParameters.spec.js +78 -0
- package/build/app.js +38 -2
- package/coverage/clover.xml +76 -58
- package/coverage/coverage-final.json +2 -2
- package/coverage/lcov-report/index.html +1 -1
- package/coverage/lcov-report/index.js.html +1 -1
- package/coverage/lcov-report/pixelUrl.js.html +79 -25
- package/coverage/lcov-report/requestParameters.js.html +65 -29
- package/coverage/lcov.info +119 -89
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## `0.10.0`
|
|
4
|
+
|
|
5
|
+
Adds support for multi-platform click IDs (ttclid, li_fat_id, twclid, rdt_cid, tblci) and placement parameter.
|
|
6
|
+
|
|
3
7
|
## `0.9.0`
|
|
4
8
|
|
|
5
9
|
Adds support for HubSpot Ads (HSA) parameters (hsa_ad, hsa_cam, hsa_grp, hsa_kw, hsa_mt, hsa_src, hsa_tgt).
|
|
@@ -66,6 +66,78 @@ describe('pixelUrl', () => {
|
|
|
66
66
|
})
|
|
67
67
|
})
|
|
68
68
|
|
|
69
|
+
describe('with ttclid', () => {
|
|
70
|
+
it('returns the data', () => {
|
|
71
|
+
html = "<!DOCTYPE html><html lang='es'></html>"
|
|
72
|
+
dom = new JSDOM(html, {
|
|
73
|
+
url: 'https://staging.factorialhr.es/blog?ttclid=tt_123'
|
|
74
|
+
})
|
|
75
|
+
expect(pixelUrl(dom.window.document)).toEqual(
|
|
76
|
+
'/internal/pixel?mc=&referer=&language=es&landing_page=https://staging.factorialhr.es/blog&ttclid=tt_123'
|
|
77
|
+
)
|
|
78
|
+
})
|
|
79
|
+
})
|
|
80
|
+
|
|
81
|
+
describe('with li_fat_id', () => {
|
|
82
|
+
it('returns the data', () => {
|
|
83
|
+
html = "<!DOCTYPE html><html lang='es'></html>"
|
|
84
|
+
dom = new JSDOM(html, {
|
|
85
|
+
url: 'https://staging.factorialhr.es/blog?li_fat_id=li_456'
|
|
86
|
+
})
|
|
87
|
+
expect(pixelUrl(dom.window.document)).toEqual(
|
|
88
|
+
'/internal/pixel?mc=&referer=&language=es&landing_page=https://staging.factorialhr.es/blog&li_fat_id=li_456'
|
|
89
|
+
)
|
|
90
|
+
})
|
|
91
|
+
})
|
|
92
|
+
|
|
93
|
+
describe('with twclid', () => {
|
|
94
|
+
it('returns the data', () => {
|
|
95
|
+
html = "<!DOCTYPE html><html lang='es'></html>"
|
|
96
|
+
dom = new JSDOM(html, {
|
|
97
|
+
url: 'https://staging.factorialhr.es/blog?twclid=tw_789'
|
|
98
|
+
})
|
|
99
|
+
expect(pixelUrl(dom.window.document)).toEqual(
|
|
100
|
+
'/internal/pixel?mc=&referer=&language=es&landing_page=https://staging.factorialhr.es/blog&twclid=tw_789'
|
|
101
|
+
)
|
|
102
|
+
})
|
|
103
|
+
})
|
|
104
|
+
|
|
105
|
+
describe('with rdt_cid', () => {
|
|
106
|
+
it('returns the data', () => {
|
|
107
|
+
html = "<!DOCTYPE html><html lang='es'></html>"
|
|
108
|
+
dom = new JSDOM(html, {
|
|
109
|
+
url: 'https://staging.factorialhr.es/blog?rdt_cid=rd_012'
|
|
110
|
+
})
|
|
111
|
+
expect(pixelUrl(dom.window.document)).toEqual(
|
|
112
|
+
'/internal/pixel?mc=&referer=&language=es&landing_page=https://staging.factorialhr.es/blog&rdt_cid=rd_012'
|
|
113
|
+
)
|
|
114
|
+
})
|
|
115
|
+
})
|
|
116
|
+
|
|
117
|
+
describe('with tblci', () => {
|
|
118
|
+
it('returns the data', () => {
|
|
119
|
+
html = "<!DOCTYPE html><html lang='es'></html>"
|
|
120
|
+
dom = new JSDOM(html, {
|
|
121
|
+
url: 'https://staging.factorialhr.es/blog?tblci=tb_345'
|
|
122
|
+
})
|
|
123
|
+
expect(pixelUrl(dom.window.document)).toEqual(
|
|
124
|
+
'/internal/pixel?mc=&referer=&language=es&landing_page=https://staging.factorialhr.es/blog&tblci=tb_345'
|
|
125
|
+
)
|
|
126
|
+
})
|
|
127
|
+
})
|
|
128
|
+
|
|
129
|
+
describe('with placement', () => {
|
|
130
|
+
it('returns the data with encoded placement', () => {
|
|
131
|
+
html = "<!DOCTYPE html><html lang='es'></html>"
|
|
132
|
+
dom = new JSDOM(html, {
|
|
133
|
+
url: 'https://staging.factorialhr.es/blog?placement=feed'
|
|
134
|
+
})
|
|
135
|
+
expect(pixelUrl(dom.window.document)).toEqual(
|
|
136
|
+
'/internal/pixel?mc=&referer=&language=es&landing_page=https://staging.factorialhr.es/blog&placement=feed'
|
|
137
|
+
)
|
|
138
|
+
})
|
|
139
|
+
})
|
|
140
|
+
|
|
69
141
|
describe('with UTM parameters', () => {
|
|
70
142
|
it('returns the data with all UTM params', () => {
|
|
71
143
|
html = "<!DOCTYPE html><html lang='en'></html>"
|
|
@@ -129,4 +201,16 @@ describe('pixelUrl', () => {
|
|
|
129
201
|
)
|
|
130
202
|
})
|
|
131
203
|
})
|
|
204
|
+
|
|
205
|
+
describe('with all click IDs and placement combined', () => {
|
|
206
|
+
it('includes all click IDs, UTMs, HSA, and placement', () => {
|
|
207
|
+
html = "<!DOCTYPE html><html lang='en'></html>"
|
|
208
|
+
dom = new JSDOM(html, {
|
|
209
|
+
url: 'https://factorialhr.com/blog?utm_source=tiktok&utm_medium=cpc&gclid=g_123&fbclid=fb_456&ttclid=tt_789&li_fat_id=li_012&twclid=tw_345&rdt_cid=rd_678&tblci=tb_901&hsa_cam=camp_1&placement=feed'
|
|
210
|
+
})
|
|
211
|
+
expect(pixelUrl(dom.window.document)).toEqual(
|
|
212
|
+
'/internal/pixel?mc=&referer=&language=en&landing_page=https://factorialhr.com/blog&gclid=g_123&fbclid=fb_456&ttclid=tt_789&li_fat_id=li_012&twclid=tw_345&rdt_cid=rd_678&tblci=tb_901&utm_source=tiktok&utm_medium=cpc&hsa_cam=camp_1&placement=feed'
|
|
213
|
+
)
|
|
214
|
+
})
|
|
215
|
+
})
|
|
132
216
|
})
|
|
@@ -32,6 +32,36 @@ const domWithHsa = new JSDOM(html, {
|
|
|
32
32
|
referrer: 'https://google.com?query=cómo hacer nóminas'
|
|
33
33
|
})
|
|
34
34
|
|
|
35
|
+
const domWithTtclid = new JSDOM(html, {
|
|
36
|
+
url: 'https://factorialhr.com/team/césar?ttclid=tt_click_123',
|
|
37
|
+
referrer: 'https://google.com?query=cómo hacer nóminas'
|
|
38
|
+
})
|
|
39
|
+
|
|
40
|
+
const domWithLiFatId = new JSDOM(html, {
|
|
41
|
+
url: 'https://factorialhr.com/team/césar?li_fat_id=li_click_456',
|
|
42
|
+
referrer: 'https://google.com?query=cómo hacer nóminas'
|
|
43
|
+
})
|
|
44
|
+
|
|
45
|
+
const domWithTwclid = new JSDOM(html, {
|
|
46
|
+
url: 'https://factorialhr.com/team/césar?twclid=tw_click_789',
|
|
47
|
+
referrer: 'https://google.com?query=cómo hacer nóminas'
|
|
48
|
+
})
|
|
49
|
+
|
|
50
|
+
const domWithRdtCid = new JSDOM(html, {
|
|
51
|
+
url: 'https://factorialhr.com/team/césar?rdt_cid=rd_click_012',
|
|
52
|
+
referrer: 'https://google.com?query=cómo hacer nóminas'
|
|
53
|
+
})
|
|
54
|
+
|
|
55
|
+
const domWithTblci = new JSDOM(html, {
|
|
56
|
+
url: 'https://factorialhr.com/team/césar?tblci=tb_click_345',
|
|
57
|
+
referrer: 'https://google.com?query=cómo hacer nóminas'
|
|
58
|
+
})
|
|
59
|
+
|
|
60
|
+
const domWithPlacement = new JSDOM(html, {
|
|
61
|
+
url: 'https://factorialhr.com/team/césar?placement=feed',
|
|
62
|
+
referrer: 'https://google.com?query=cómo hacer nóminas'
|
|
63
|
+
})
|
|
64
|
+
|
|
35
65
|
describe('requestParameters', () => {
|
|
36
66
|
it('returns the data', () => {
|
|
37
67
|
expect(requestParameters(dom.window.document)).toEqual({
|
|
@@ -89,4 +119,52 @@ describe('requestParameters', () => {
|
|
|
89
119
|
hsa_tgt: '901234'
|
|
90
120
|
})
|
|
91
121
|
})
|
|
122
|
+
|
|
123
|
+
it('returns the data with ttclid', () => {
|
|
124
|
+
expect(requestParameters(domWithTtclid.window.document)).toEqual({
|
|
125
|
+
landingPage: 'https://factorialhr.com/team/c%25C3%25A9sar',
|
|
126
|
+
language: 'en',
|
|
127
|
+
ttclid: 'tt_click_123'
|
|
128
|
+
})
|
|
129
|
+
})
|
|
130
|
+
|
|
131
|
+
it('returns the data with li_fat_id', () => {
|
|
132
|
+
expect(requestParameters(domWithLiFatId.window.document)).toEqual({
|
|
133
|
+
landingPage: 'https://factorialhr.com/team/c%25C3%25A9sar',
|
|
134
|
+
language: 'en',
|
|
135
|
+
li_fat_id: 'li_click_456'
|
|
136
|
+
})
|
|
137
|
+
})
|
|
138
|
+
|
|
139
|
+
it('returns the data with twclid', () => {
|
|
140
|
+
expect(requestParameters(domWithTwclid.window.document)).toEqual({
|
|
141
|
+
landingPage: 'https://factorialhr.com/team/c%25C3%25A9sar',
|
|
142
|
+
language: 'en',
|
|
143
|
+
twclid: 'tw_click_789'
|
|
144
|
+
})
|
|
145
|
+
})
|
|
146
|
+
|
|
147
|
+
it('returns the data with rdt_cid', () => {
|
|
148
|
+
expect(requestParameters(domWithRdtCid.window.document)).toEqual({
|
|
149
|
+
landingPage: 'https://factorialhr.com/team/c%25C3%25A9sar',
|
|
150
|
+
language: 'en',
|
|
151
|
+
rdt_cid: 'rd_click_012'
|
|
152
|
+
})
|
|
153
|
+
})
|
|
154
|
+
|
|
155
|
+
it('returns the data with tblci', () => {
|
|
156
|
+
expect(requestParameters(domWithTblci.window.document)).toEqual({
|
|
157
|
+
landingPage: 'https://factorialhr.com/team/c%25C3%25A9sar',
|
|
158
|
+
language: 'en',
|
|
159
|
+
tblci: 'tb_click_345'
|
|
160
|
+
})
|
|
161
|
+
})
|
|
162
|
+
|
|
163
|
+
it('returns the data with placement', () => {
|
|
164
|
+
expect(requestParameters(domWithPlacement.window.document)).toEqual({
|
|
165
|
+
landingPage: 'https://factorialhr.com/team/c%25C3%25A9sar',
|
|
166
|
+
language: 'en',
|
|
167
|
+
placement: 'feed'
|
|
168
|
+
})
|
|
169
|
+
})
|
|
92
170
|
})
|
package/build/app.js
CHANGED
|
@@ -122,6 +122,11 @@ exports.default = function (document) {
|
|
|
122
122
|
gclid = _requestParameters.gclid,
|
|
123
123
|
aclid = _requestParameters.aclid,
|
|
124
124
|
fbclid = _requestParameters.fbclid,
|
|
125
|
+
ttclid = _requestParameters.ttclid,
|
|
126
|
+
li_fat_id = _requestParameters.li_fat_id,
|
|
127
|
+
twclid = _requestParameters.twclid,
|
|
128
|
+
rdt_cid = _requestParameters.rdt_cid,
|
|
129
|
+
tblci = _requestParameters.tblci,
|
|
125
130
|
utm_source = _requestParameters.utm_source,
|
|
126
131
|
utm_medium = _requestParameters.utm_medium,
|
|
127
132
|
utm_campaign = _requestParameters.utm_campaign,
|
|
@@ -133,7 +138,8 @@ exports.default = function (document) {
|
|
|
133
138
|
hsa_kw = _requestParameters.hsa_kw,
|
|
134
139
|
hsa_mt = _requestParameters.hsa_mt,
|
|
135
140
|
hsa_src = _requestParameters.hsa_src,
|
|
136
|
-
hsa_tgt = _requestParameters.hsa_tgt
|
|
141
|
+
hsa_tgt = _requestParameters.hsa_tgt,
|
|
142
|
+
placement = _requestParameters.placement;
|
|
137
143
|
|
|
138
144
|
var attributes = ['mc=' + (mc || ''), 'referer=' + encodeURI(document.referrer), 'language=' + language, 'landing_page=' + landingPage];
|
|
139
145
|
|
|
@@ -146,6 +152,21 @@ exports.default = function (document) {
|
|
|
146
152
|
if (fbclid) {
|
|
147
153
|
attributes.push('fbclid=' + fbclid);
|
|
148
154
|
}
|
|
155
|
+
if (ttclid) {
|
|
156
|
+
attributes.push('ttclid=' + ttclid);
|
|
157
|
+
}
|
|
158
|
+
if (li_fat_id) {
|
|
159
|
+
attributes.push('li_fat_id=' + li_fat_id);
|
|
160
|
+
}
|
|
161
|
+
if (twclid) {
|
|
162
|
+
attributes.push('twclid=' + twclid);
|
|
163
|
+
}
|
|
164
|
+
if (rdt_cid) {
|
|
165
|
+
attributes.push('rdt_cid=' + rdt_cid);
|
|
166
|
+
}
|
|
167
|
+
if (tblci) {
|
|
168
|
+
attributes.push('tblci=' + tblci);
|
|
169
|
+
}
|
|
149
170
|
if (utm_source) {
|
|
150
171
|
attributes.push('utm_source=' + encodeURIComponent(utm_source));
|
|
151
172
|
}
|
|
@@ -182,6 +203,9 @@ exports.default = function (document) {
|
|
|
182
203
|
if (hsa_tgt) {
|
|
183
204
|
attributes.push('hsa_tgt=' + encodeURIComponent(hsa_tgt));
|
|
184
205
|
}
|
|
206
|
+
if (placement) {
|
|
207
|
+
attributes.push('placement=' + encodeURIComponent(placement));
|
|
208
|
+
}
|
|
185
209
|
|
|
186
210
|
return '/internal/pixel?' + attributes.join('&');
|
|
187
211
|
};
|
|
@@ -239,6 +263,12 @@ function requestParameters(document) {
|
|
|
239
263
|
var hsa_mt = findPropertyInParams(search, 'hsa_mt');
|
|
240
264
|
var hsa_src = findPropertyInParams(search, 'hsa_src');
|
|
241
265
|
var hsa_tgt = findPropertyInParams(search, 'hsa_tgt');
|
|
266
|
+
var ttclid = findPropertyInParams(search, 'ttclid');
|
|
267
|
+
var li_fat_id = findPropertyInParams(search, 'li_fat_id');
|
|
268
|
+
var twclid = findPropertyInParams(search, 'twclid');
|
|
269
|
+
var rdt_cid = findPropertyInParams(search, 'rdt_cid');
|
|
270
|
+
var tblci = findPropertyInParams(search, 'tblci');
|
|
271
|
+
var placement = findPropertyInParams(search, 'placement');
|
|
242
272
|
|
|
243
273
|
return {
|
|
244
274
|
language: locale,
|
|
@@ -247,6 +277,11 @@ function requestParameters(document) {
|
|
|
247
277
|
gclid: gclid,
|
|
248
278
|
aclid: aclid,
|
|
249
279
|
fbclid: fbclid,
|
|
280
|
+
ttclid: ttclid,
|
|
281
|
+
li_fat_id: li_fat_id,
|
|
282
|
+
twclid: twclid,
|
|
283
|
+
rdt_cid: rdt_cid,
|
|
284
|
+
tblci: tblci,
|
|
250
285
|
utm_source: utm_source,
|
|
251
286
|
utm_medium: utm_medium,
|
|
252
287
|
utm_campaign: utm_campaign,
|
|
@@ -258,7 +293,8 @@ function requestParameters(document) {
|
|
|
258
293
|
hsa_kw: hsa_kw,
|
|
259
294
|
hsa_mt: hsa_mt,
|
|
260
295
|
hsa_src: hsa_src,
|
|
261
|
-
hsa_tgt: hsa_tgt
|
|
296
|
+
hsa_tgt: hsa_tgt,
|
|
297
|
+
placement: placement
|
|
262
298
|
};
|
|
263
299
|
}
|
|
264
300
|
|
package/coverage/clover.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
4
|
-
<metrics statements="
|
|
2
|
+
<coverage generated="1773959583181" clover="3.2.0">
|
|
3
|
+
<project timestamp="1773959583181" name="All files">
|
|
4
|
+
<metrics statements="87" coveredstatements="77" conditionals="53" coveredconditionals="44" methods="5" coveredmethods="4" elements="145" coveredelements="125" complexity="0" loc="87" ncloc="87" packages="1" files="3" classes="3">
|
|
5
5
|
<file name="index.js" path="/Users/joan.silio/code/factorial-pixel/src/index.js">
|
|
6
6
|
<metrics statements="10" coveredstatements="0" conditionals="8" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
7
7
|
<line num="1" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
@@ -16,69 +16,87 @@
|
|
|
16
16
|
<line num="18" count="0" type="stmt"/>
|
|
17
17
|
</file>
|
|
18
18
|
<file name="pixelUrl.js" path="/Users/joan.silio/code/factorial-pixel/src/pixelUrl.js">
|
|
19
|
-
<metrics statements="
|
|
20
|
-
<line num="4" count="
|
|
21
|
-
<line num="7" count="
|
|
22
|
-
<line num="14" count="
|
|
23
|
-
<line num="15" count="
|
|
24
|
-
<line num="17" count="
|
|
19
|
+
<metrics statements="45" coveredstatements="45" conditionals="44" coveredconditionals="44" methods="1" coveredmethods="1"/>
|
|
20
|
+
<line num="4" count="18" type="stmt"/>
|
|
21
|
+
<line num="7" count="18" type="stmt"/>
|
|
22
|
+
<line num="14" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
23
|
+
<line num="15" count="4" type="stmt"/>
|
|
24
|
+
<line num="17" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
25
25
|
<line num="18" count="1" type="stmt"/>
|
|
26
|
-
<line num="20" count="
|
|
27
|
-
<line num="21" count="
|
|
28
|
-
<line num="23" count="
|
|
29
|
-
<line num="24" count="
|
|
30
|
-
<line num="26" count="
|
|
26
|
+
<line num="20" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
27
|
+
<line num="21" count="2" type="stmt"/>
|
|
28
|
+
<line num="23" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
29
|
+
<line num="24" count="2" type="stmt"/>
|
|
30
|
+
<line num="26" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
31
31
|
<line num="27" count="2" type="stmt"/>
|
|
32
|
-
<line num="29" count="
|
|
33
|
-
<line num="30" count="
|
|
34
|
-
<line num="32" count="
|
|
32
|
+
<line num="29" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
33
|
+
<line num="30" count="2" type="stmt"/>
|
|
34
|
+
<line num="32" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
35
35
|
<line num="33" count="2" type="stmt"/>
|
|
36
|
-
<line num="35" count="
|
|
37
|
-
<line num="36" count="
|
|
38
|
-
<line num="38" count="
|
|
39
|
-
<line num="39" count="
|
|
40
|
-
<line num="41" count="
|
|
36
|
+
<line num="35" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
37
|
+
<line num="36" count="2" type="stmt"/>
|
|
38
|
+
<line num="38" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
39
|
+
<line num="39" count="5" type="stmt"/>
|
|
40
|
+
<line num="41" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
41
41
|
<line num="42" count="3" type="stmt"/>
|
|
42
|
-
<line num="44" count="
|
|
43
|
-
<line num="45" count="
|
|
44
|
-
<line num="47" count="
|
|
42
|
+
<line num="44" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
43
|
+
<line num="45" count="3" type="stmt"/>
|
|
44
|
+
<line num="47" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
45
45
|
<line num="48" count="2" type="stmt"/>
|
|
46
|
-
<line num="50" count="
|
|
46
|
+
<line num="50" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
47
47
|
<line num="51" count="1" type="stmt"/>
|
|
48
|
-
<line num="53" count="
|
|
49
|
-
<line num="54" count="
|
|
50
|
-
<line num="56" count="
|
|
51
|
-
<line num="57" count="
|
|
52
|
-
<line num="
|
|
48
|
+
<line num="53" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
49
|
+
<line num="54" count="1" type="stmt"/>
|
|
50
|
+
<line num="56" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
51
|
+
<line num="57" count="4" type="stmt"/>
|
|
52
|
+
<line num="59" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
53
|
+
<line num="60" count="1" type="stmt"/>
|
|
54
|
+
<line num="62" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
55
|
+
<line num="63" count="2" type="stmt"/>
|
|
56
|
+
<line num="65" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
57
|
+
<line num="66" count="1" type="stmt"/>
|
|
58
|
+
<line num="68" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
59
|
+
<line num="69" count="2" type="stmt"/>
|
|
60
|
+
<line num="71" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
61
|
+
<line num="72" count="1" type="stmt"/>
|
|
62
|
+
<line num="74" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
63
|
+
<line num="75" count="2" type="stmt"/>
|
|
64
|
+
<line num="78" count="18" type="stmt"/>
|
|
53
65
|
</file>
|
|
54
66
|
<file name="requestParameters.js" path="/Users/joan.silio/code/factorial-pixel/src/requestParameters.js">
|
|
55
|
-
<metrics statements="
|
|
56
|
-
<line num="2" count="
|
|
57
|
-
<line num="4" count="
|
|
58
|
-
<line num="5" count="
|
|
59
|
-
<line num="7" count="
|
|
60
|
-
<line num="10" count="
|
|
61
|
-
<line num="14" count="
|
|
62
|
-
<line num="15" count="
|
|
63
|
-
<line num="16" count="
|
|
64
|
-
<line num="17" count="
|
|
65
|
-
<line num="18" count="
|
|
66
|
-
<line num="19" count="
|
|
67
|
-
<line num="20" count="
|
|
68
|
-
<line num="21" count="
|
|
69
|
-
<line num="22" count="
|
|
70
|
-
<line num="23" count="
|
|
71
|
-
<line num="24" count="
|
|
72
|
-
<line num="25" count="
|
|
73
|
-
<line num="26" count="
|
|
74
|
-
<line num="27" count="
|
|
75
|
-
<line num="28" count="
|
|
76
|
-
<line num="29" count="
|
|
77
|
-
<line num="30" count="
|
|
78
|
-
<line num="31" count="
|
|
79
|
-
<line num="32" count="
|
|
80
|
-
<line num="33" count="
|
|
81
|
-
<line num="
|
|
67
|
+
<metrics statements="32" coveredstatements="32" conditionals="1" coveredconditionals="0" methods="3" coveredmethods="3"/>
|
|
68
|
+
<line num="2" count="660" type="stmt"/>
|
|
69
|
+
<line num="4" count="660" type="stmt"/>
|
|
70
|
+
<line num="5" count="1518" type="stmt"/>
|
|
71
|
+
<line num="7" count="1518" type="stmt"/>
|
|
72
|
+
<line num="10" count="660" type="stmt"/>
|
|
73
|
+
<line num="14" count="30" type="stmt"/>
|
|
74
|
+
<line num="15" count="30" type="stmt"/>
|
|
75
|
+
<line num="16" count="30" type="stmt"/>
|
|
76
|
+
<line num="17" count="30" type="stmt"/>
|
|
77
|
+
<line num="18" count="30" type="stmt"/>
|
|
78
|
+
<line num="19" count="30" type="stmt"/>
|
|
79
|
+
<line num="20" count="30" type="stmt"/>
|
|
80
|
+
<line num="21" count="30" type="stmt"/>
|
|
81
|
+
<line num="22" count="30" type="stmt"/>
|
|
82
|
+
<line num="23" count="30" type="stmt"/>
|
|
83
|
+
<line num="24" count="30" type="stmt"/>
|
|
84
|
+
<line num="25" count="30" type="stmt"/>
|
|
85
|
+
<line num="26" count="30" type="stmt"/>
|
|
86
|
+
<line num="27" count="30" type="stmt"/>
|
|
87
|
+
<line num="28" count="30" type="stmt"/>
|
|
88
|
+
<line num="29" count="30" type="stmt"/>
|
|
89
|
+
<line num="30" count="30" type="stmt"/>
|
|
90
|
+
<line num="31" count="30" type="stmt"/>
|
|
91
|
+
<line num="32" count="30" type="stmt"/>
|
|
92
|
+
<line num="33" count="30" type="stmt"/>
|
|
93
|
+
<line num="34" count="30" type="stmt"/>
|
|
94
|
+
<line num="35" count="30" type="stmt"/>
|
|
95
|
+
<line num="36" count="30" type="stmt"/>
|
|
96
|
+
<line num="37" count="30" type="stmt"/>
|
|
97
|
+
<line num="38" count="30" type="stmt"/>
|
|
98
|
+
<line num="39" count="30" type="stmt"/>
|
|
99
|
+
<line num="41" count="30" type="stmt"/>
|
|
82
100
|
</file>
|
|
83
101
|
</metrics>
|
|
84
102
|
</project>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
{"/Users/joan.silio/code/factorial-pixel/src/index.js": {"path":"/Users/joan.silio/code/factorial-pixel/src/index.js","statementMap":{"0":{"start":{"line":1,"column":29},"end":{"line":1,"column":50}},"1":{"start":{"line":1,"column":68},"end":{"line":1,"column":101}},"2":{"start":{"line":1,"column":140},"end":{"line":1,"column":194}},"3":{"start":{"line":9,"column":13},"end":{"line":9,"column":55}},"4":{"start":{"line":10,"column":19},"end":{"line":10,"column":69}},"5":{"start":{"line":11,"column":13},"end":{"line":11,"column":58}},"6":{"start":{"line":13,"column":10},"end":{"line":13,"column":39}},"7":{"start":{"line":14,"column":0},"end":{"line":14,"column":58}},"8":{"start":{"line":15,"column":0},"end":{"line":15,"column":14}},"9":{"start":{"line":16,"column":0},"end":{"line":16,"column":15}},"10":{"start":{"line":17,"column":0},"end":{"line":17,"column":28}},"11":{"start":{"line":18,"column":0},"end":{"line":18,"column":31}}},"fnMap":{"0":{"name":"_interopRequireDefault","decl":{"start":{"line":1,"column":111},"end":{"line":1,"column":133}},"loc":{"start":{"line":1,"column":139},"end":{"line":1,"column":195}},"line":1}},"branchMap":{"0":{"loc":{"start":{"line":1,"column":147},"end":{"line":1,"column":193}},"type":"cond-expr","locations":[{"start":{"line":1,"column":171},"end":{"line":1,"column":174}},{"start":{"line":1,"column":177},"end":{"line":1,"column":193}}],"line":1},"1":{"loc":{"start":{"line":1,"column":147},"end":{"line":1,"column":168}},"type":"binary-expr","locations":[{"start":{"line":1,"column":147},"end":{"line":1,"column":150}},{"start":{"line":1,"column":154},"end":{"line":1,"column":168}}],"line":1},"2":{"loc":{"start":{"line":10,"column":19},"end":{"line":10,"column":69}},"type":"cond-expr","locations":[{"start":{"line":10,"column":28},"end":{"line":10,"column":62}},{"start":{"line":10,"column":65},"end":{"line":10,"column":69}}],"line":10},"3":{"loc":{"start":{"line":11,"column":13},"end":{"line":11,"column":58}},"type":"binary-expr","locations":[{"start":{"line":11,"column":13},"end":{"line":11,"column":25}},{"start":{"line":11,"column":29},"end":{"line":11,"column":58}}],"line":11}},"s":{"0":0,"1":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0},"f":{"0":0},"b":{"0":[0,0],"1":[0,0],"2":[0,0],"3":[0,0]}}
|
|
2
|
-
,"/Users/joan.silio/code/factorial-pixel/src/pixelUrl.js": {"path":"/Users/joan.silio/code/factorial-pixel/src/pixelUrl.js","statementMap":{"0":{"start":{"line":4,"column":
|
|
3
|
-
,"/Users/joan.silio/code/factorial-pixel/src/requestParameters.js": {"path":"/Users/joan.silio/code/factorial-pixel/src/requestParameters.js","statementMap":{"0":{"start":{"line":2,"column":14},"end":{"line":2,"column":16}},"1":{"start":{"line":4,"column":2},"end":{"line":8,"column":4}},"2":{"start":{"line":5,"column":25},"end":{"line":5,"column":41}},"3":{"start":{"line":7,"column":4},"end":{"line":7,"column":20}},"4":{"start":{"line":10,"column":2},"end":{"line":10,"column":22}},"5":{"start":{"line":14,"column":15},"end":{"line":14,"column":68}},"6":{"start":{"line":15,"column":17},"end":{"line":15,"column":54}},"7":{"start":{"line":16,"column":18},"end":{"line":16,"column":33}},"8":{"start":{"line":17,"column":17},"end":{"line":17,"column":66}},"9":{"start":{"line":18,"column":13},"end":{"line":18,"column":47}},"10":{"start":{"line":19,"column":16},"end":{"line":19,"column":53}},"11":{"start":{"line":20,"column":16},"end":{"line":20,"column":53}},"12":{"start":{"line":21,"column":17},"end":{"line":21,"column":55}},"13":{"start":{"line":22,"column":21},"end":{"line":22,"column":63}},"14":{"start":{"line":23,"column":21},"end":{"line":23,"column":63}},"15":{"start":{"line":24,"column":23},"end":{"line":24,"column":67}},"16":{"start":{"line":25,"column":22},"end":{"line":25,"column":65}},"17":{"start":{"line":26,"column":19},"end":{"line":26,"column":59}},"18":{"start":{"line":27,"column":17},"end":{"line":27,"column":55}},"19":{"start":{"line":28,"column":18},"end":{"line":28,"column":57}},"20":{"start":{"line":29,"column":18},"end":{"line":29,"column":57}},"21":{"start":{"line":30,"column":17},"end":{"line":30,"column":55}},"22":{"start":{"line":31,"column":17},"end":{"line":31,"column":55}},"23":{"start":{"line":32,"column":18},"end":{"line":32,"column":57}},"24":{"start":{"line":33,"column":18},"end":{"line":33,"column":57}},"25":{"start":{"line":35,"column":2},"end":{"line":
|
|
2
|
+
,"/Users/joan.silio/code/factorial-pixel/src/pixelUrl.js": {"path":"/Users/joan.silio/code/factorial-pixel/src/pixelUrl.js","statementMap":{"0":{"start":{"line":4,"column":237},"end":{"line":6,"column":3}},"1":{"start":{"line":7,"column":21},"end":{"line":12,"column":3}},"2":{"start":{"line":14,"column":2},"end":{"line":16,"column":3}},"3":{"start":{"line":15,"column":4},"end":{"line":15,"column":37}},"4":{"start":{"line":17,"column":2},"end":{"line":19,"column":3}},"5":{"start":{"line":18,"column":4},"end":{"line":18,"column":37}},"6":{"start":{"line":20,"column":2},"end":{"line":22,"column":3}},"7":{"start":{"line":21,"column":4},"end":{"line":21,"column":39}},"8":{"start":{"line":23,"column":2},"end":{"line":25,"column":3}},"9":{"start":{"line":24,"column":4},"end":{"line":24,"column":39}},"10":{"start":{"line":26,"column":2},"end":{"line":28,"column":3}},"11":{"start":{"line":27,"column":4},"end":{"line":27,"column":45}},"12":{"start":{"line":29,"column":2},"end":{"line":31,"column":3}},"13":{"start":{"line":30,"column":4},"end":{"line":30,"column":39}},"14":{"start":{"line":32,"column":2},"end":{"line":34,"column":3}},"15":{"start":{"line":33,"column":4},"end":{"line":33,"column":41}},"16":{"start":{"line":35,"column":2},"end":{"line":37,"column":3}},"17":{"start":{"line":36,"column":4},"end":{"line":36,"column":37}},"18":{"start":{"line":38,"column":2},"end":{"line":40,"column":3}},"19":{"start":{"line":39,"column":4},"end":{"line":39,"column":67}},"20":{"start":{"line":41,"column":2},"end":{"line":43,"column":3}},"21":{"start":{"line":42,"column":4},"end":{"line":42,"column":67}},"22":{"start":{"line":44,"column":2},"end":{"line":46,"column":3}},"23":{"start":{"line":45,"column":4},"end":{"line":45,"column":71}},"24":{"start":{"line":47,"column":2},"end":{"line":49,"column":3}},"25":{"start":{"line":48,"column":4},"end":{"line":48,"column":69}},"26":{"start":{"line":50,"column":2},"end":{"line":52,"column":3}},"27":{"start":{"line":51,"column":4},"end":{"line":51,"column":63}},"28":{"start":{"line":53,"column":2},"end":{"line":55,"column":3}},"29":{"start":{"line":54,"column":4},"end":{"line":54,"column":59}},"30":{"start":{"line":56,"column":2},"end":{"line":58,"column":3}},"31":{"start":{"line":57,"column":4},"end":{"line":57,"column":61}},"32":{"start":{"line":59,"column":2},"end":{"line":61,"column":3}},"33":{"start":{"line":60,"column":4},"end":{"line":60,"column":61}},"34":{"start":{"line":62,"column":2},"end":{"line":64,"column":3}},"35":{"start":{"line":63,"column":4},"end":{"line":63,"column":59}},"36":{"start":{"line":65,"column":2},"end":{"line":67,"column":3}},"37":{"start":{"line":66,"column":4},"end":{"line":66,"column":59}},"38":{"start":{"line":68,"column":2},"end":{"line":70,"column":3}},"39":{"start":{"line":69,"column":4},"end":{"line":69,"column":61}},"40":{"start":{"line":71,"column":2},"end":{"line":73,"column":3}},"41":{"start":{"line":72,"column":4},"end":{"line":72,"column":61}},"42":{"start":{"line":74,"column":2},"end":{"line":76,"column":3}},"43":{"start":{"line":75,"column":4},"end":{"line":75,"column":65}},"44":{"start":{"line":78,"column":2},"end":{"line":78,"column":50}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":3,"column":15},"end":{"line":3,"column":16}},"loc":{"start":{"line":3,"column":27},"end":{"line":79,"column":1}},"line":3}},"branchMap":{"0":{"loc":{"start":{"line":8,"column":10},"end":{"line":8,"column":18}},"type":"binary-expr","locations":[{"start":{"line":8,"column":10},"end":{"line":8,"column":12}},{"start":{"line":8,"column":16},"end":{"line":8,"column":18}}],"line":8},"1":{"loc":{"start":{"line":14,"column":2},"end":{"line":16,"column":3}},"type":"if","locations":[{"start":{"line":14,"column":2},"end":{"line":16,"column":3}},{"start":{"line":14,"column":2},"end":{"line":16,"column":3}}],"line":14},"2":{"loc":{"start":{"line":17,"column":2},"end":{"line":19,"column":3}},"type":"if","locations":[{"start":{"line":17,"column":2},"end":{"line":19,"column":3}},{"start":{"line":17,"column":2},"end":{"line":19,"column":3}}],"line":17},"3":{"loc":{"start":{"line":20,"column":2},"end":{"line":22,"column":3}},"type":"if","locations":[{"start":{"line":20,"column":2},"end":{"line":22,"column":3}},{"start":{"line":20,"column":2},"end":{"line":22,"column":3}}],"line":20},"4":{"loc":{"start":{"line":23,"column":2},"end":{"line":25,"column":3}},"type":"if","locations":[{"start":{"line":23,"column":2},"end":{"line":25,"column":3}},{"start":{"line":23,"column":2},"end":{"line":25,"column":3}}],"line":23},"5":{"loc":{"start":{"line":26,"column":2},"end":{"line":28,"column":3}},"type":"if","locations":[{"start":{"line":26,"column":2},"end":{"line":28,"column":3}},{"start":{"line":26,"column":2},"end":{"line":28,"column":3}}],"line":26},"6":{"loc":{"start":{"line":29,"column":2},"end":{"line":31,"column":3}},"type":"if","locations":[{"start":{"line":29,"column":2},"end":{"line":31,"column":3}},{"start":{"line":29,"column":2},"end":{"line":31,"column":3}}],"line":29},"7":{"loc":{"start":{"line":32,"column":2},"end":{"line":34,"column":3}},"type":"if","locations":[{"start":{"line":32,"column":2},"end":{"line":34,"column":3}},{"start":{"line":32,"column":2},"end":{"line":34,"column":3}}],"line":32},"8":{"loc":{"start":{"line":35,"column":2},"end":{"line":37,"column":3}},"type":"if","locations":[{"start":{"line":35,"column":2},"end":{"line":37,"column":3}},{"start":{"line":35,"column":2},"end":{"line":37,"column":3}}],"line":35},"9":{"loc":{"start":{"line":38,"column":2},"end":{"line":40,"column":3}},"type":"if","locations":[{"start":{"line":38,"column":2},"end":{"line":40,"column":3}},{"start":{"line":38,"column":2},"end":{"line":40,"column":3}}],"line":38},"10":{"loc":{"start":{"line":41,"column":2},"end":{"line":43,"column":3}},"type":"if","locations":[{"start":{"line":41,"column":2},"end":{"line":43,"column":3}},{"start":{"line":41,"column":2},"end":{"line":43,"column":3}}],"line":41},"11":{"loc":{"start":{"line":44,"column":2},"end":{"line":46,"column":3}},"type":"if","locations":[{"start":{"line":44,"column":2},"end":{"line":46,"column":3}},{"start":{"line":44,"column":2},"end":{"line":46,"column":3}}],"line":44},"12":{"loc":{"start":{"line":47,"column":2},"end":{"line":49,"column":3}},"type":"if","locations":[{"start":{"line":47,"column":2},"end":{"line":49,"column":3}},{"start":{"line":47,"column":2},"end":{"line":49,"column":3}}],"line":47},"13":{"loc":{"start":{"line":50,"column":2},"end":{"line":52,"column":3}},"type":"if","locations":[{"start":{"line":50,"column":2},"end":{"line":52,"column":3}},{"start":{"line":50,"column":2},"end":{"line":52,"column":3}}],"line":50},"14":{"loc":{"start":{"line":53,"column":2},"end":{"line":55,"column":3}},"type":"if","locations":[{"start":{"line":53,"column":2},"end":{"line":55,"column":3}},{"start":{"line":53,"column":2},"end":{"line":55,"column":3}}],"line":53},"15":{"loc":{"start":{"line":56,"column":2},"end":{"line":58,"column":3}},"type":"if","locations":[{"start":{"line":56,"column":2},"end":{"line":58,"column":3}},{"start":{"line":56,"column":2},"end":{"line":58,"column":3}}],"line":56},"16":{"loc":{"start":{"line":59,"column":2},"end":{"line":61,"column":3}},"type":"if","locations":[{"start":{"line":59,"column":2},"end":{"line":61,"column":3}},{"start":{"line":59,"column":2},"end":{"line":61,"column":3}}],"line":59},"17":{"loc":{"start":{"line":62,"column":2},"end":{"line":64,"column":3}},"type":"if","locations":[{"start":{"line":62,"column":2},"end":{"line":64,"column":3}},{"start":{"line":62,"column":2},"end":{"line":64,"column":3}}],"line":62},"18":{"loc":{"start":{"line":65,"column":2},"end":{"line":67,"column":3}},"type":"if","locations":[{"start":{"line":65,"column":2},"end":{"line":67,"column":3}},{"start":{"line":65,"column":2},"end":{"line":67,"column":3}}],"line":65},"19":{"loc":{"start":{"line":68,"column":2},"end":{"line":70,"column":3}},"type":"if","locations":[{"start":{"line":68,"column":2},"end":{"line":70,"column":3}},{"start":{"line":68,"column":2},"end":{"line":70,"column":3}}],"line":68},"20":{"loc":{"start":{"line":71,"column":2},"end":{"line":73,"column":3}},"type":"if","locations":[{"start":{"line":71,"column":2},"end":{"line":73,"column":3}},{"start":{"line":71,"column":2},"end":{"line":73,"column":3}}],"line":71},"21":{"loc":{"start":{"line":74,"column":2},"end":{"line":76,"column":3}},"type":"if","locations":[{"start":{"line":74,"column":2},"end":{"line":76,"column":3}},{"start":{"line":74,"column":2},"end":{"line":76,"column":3}}],"line":74}},"s":{"0":18,"1":18,"2":18,"3":4,"4":18,"5":1,"6":18,"7":2,"8":18,"9":2,"10":18,"11":2,"12":18,"13":2,"14":18,"15":2,"16":18,"17":2,"18":18,"19":5,"20":18,"21":3,"22":18,"23":3,"24":18,"25":2,"26":18,"27":1,"28":18,"29":1,"30":18,"31":4,"32":18,"33":1,"34":18,"35":2,"36":18,"37":1,"38":18,"39":2,"40":18,"41":1,"42":18,"43":2,"44":18},"f":{"0":18},"b":{"0":[18,17],"1":[4,14],"2":[1,17],"3":[2,16],"4":[2,16],"5":[2,16],"6":[2,16],"7":[2,16],"8":[2,16],"9":[5,13],"10":[3,15],"11":[3,15],"12":[2,16],"13":[1,17],"14":[1,17],"15":[4,14],"16":[1,17],"17":[2,16],"18":[1,17],"19":[2,16],"20":[1,17],"21":[2,16]},"_coverageSchema":"332fd63041d2c1bcb487cc26dd0d5f7d97098a6c","hash":"47c1fcbe529179271f53a3fab3b6540a07f31e00"}
|
|
3
|
+
,"/Users/joan.silio/code/factorial-pixel/src/requestParameters.js": {"path":"/Users/joan.silio/code/factorial-pixel/src/requestParameters.js","statementMap":{"0":{"start":{"line":2,"column":14},"end":{"line":2,"column":16}},"1":{"start":{"line":4,"column":2},"end":{"line":8,"column":4}},"2":{"start":{"line":5,"column":25},"end":{"line":5,"column":41}},"3":{"start":{"line":7,"column":4},"end":{"line":7,"column":20}},"4":{"start":{"line":10,"column":2},"end":{"line":10,"column":22}},"5":{"start":{"line":14,"column":15},"end":{"line":14,"column":68}},"6":{"start":{"line":15,"column":17},"end":{"line":15,"column":54}},"7":{"start":{"line":16,"column":18},"end":{"line":16,"column":33}},"8":{"start":{"line":17,"column":17},"end":{"line":17,"column":66}},"9":{"start":{"line":18,"column":13},"end":{"line":18,"column":47}},"10":{"start":{"line":19,"column":16},"end":{"line":19,"column":53}},"11":{"start":{"line":20,"column":16},"end":{"line":20,"column":53}},"12":{"start":{"line":21,"column":17},"end":{"line":21,"column":55}},"13":{"start":{"line":22,"column":21},"end":{"line":22,"column":63}},"14":{"start":{"line":23,"column":21},"end":{"line":23,"column":63}},"15":{"start":{"line":24,"column":23},"end":{"line":24,"column":67}},"16":{"start":{"line":25,"column":22},"end":{"line":25,"column":65}},"17":{"start":{"line":26,"column":19},"end":{"line":26,"column":59}},"18":{"start":{"line":27,"column":17},"end":{"line":27,"column":55}},"19":{"start":{"line":28,"column":18},"end":{"line":28,"column":57}},"20":{"start":{"line":29,"column":18},"end":{"line":29,"column":57}},"21":{"start":{"line":30,"column":17},"end":{"line":30,"column":55}},"22":{"start":{"line":31,"column":17},"end":{"line":31,"column":55}},"23":{"start":{"line":32,"column":18},"end":{"line":32,"column":57}},"24":{"start":{"line":33,"column":18},"end":{"line":33,"column":57}},"25":{"start":{"line":34,"column":17},"end":{"line":34,"column":55}},"26":{"start":{"line":35,"column":20},"end":{"line":35,"column":61}},"27":{"start":{"line":36,"column":17},"end":{"line":36,"column":55}},"28":{"start":{"line":37,"column":18},"end":{"line":37,"column":57}},"29":{"start":{"line":38,"column":16},"end":{"line":38,"column":53}},"30":{"start":{"line":39,"column":20},"end":{"line":39,"column":61}},"31":{"start":{"line":41,"column":2},"end":{"line":66,"column":3}}},"fnMap":{"0":{"name":"findPropertyInParams","decl":{"start":{"line":1,"column":9},"end":{"line":1,"column":29}},"loc":{"start":{"line":1,"column":54},"end":{"line":11,"column":1}},"line":1},"1":{"name":"(anonymous_1)","decl":{"start":{"line":4,"column":28},"end":{"line":4,"column":29}},"loc":{"start":{"line":4,"column":37},"end":{"line":8,"column":3}},"line":4},"2":{"name":"requestParameters","decl":{"start":{"line":13,"column":24},"end":{"line":13,"column":41}},"loc":{"start":{"line":13,"column":53},"end":{"line":67,"column":1}},"line":13}},"branchMap":{"0":{"loc":{"start":{"line":1,"column":31},"end":{"line":1,"column":42}},"type":"default-arg","locations":[{"start":{"line":1,"column":40},"end":{"line":1,"column":42}}],"line":1}},"s":{"0":660,"1":660,"2":1518,"3":1518,"4":660,"5":30,"6":30,"7":30,"8":30,"9":30,"10":30,"11":30,"12":30,"13":30,"14":30,"15":30,"16":30,"17":30,"18":30,"19":30,"20":30,"21":30,"22":30,"23":30,"24":30,"25":30,"26":30,"27":30,"28":30,"29":30,"30":30,"31":30},"f":{"0":660,"1":1518,"2":30},"b":{"0":[0]},"_coverageSchema":"332fd63041d2c1bcb487cc26dd0d5f7d97098a6c","hash":"4ab7e663b94323200d16bfe5ac42db62ed74901f"}
|
|
4
4
|
}
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
</div><!-- /wrapper -->
|
|
84
84
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
85
85
|
Code coverage
|
|
86
|
-
generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at
|
|
86
|
+
generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Thu Mar 19 2026 23:33:03 GMT+0100 (Central European Standard Time)
|
|
87
87
|
</div>
|
|
88
88
|
</div>
|
|
89
89
|
<script src="prettify.js"></script>
|
|
@@ -83,7 +83,7 @@ const img <span class="cstat-no" title="statement not covered" >= document.creat
|
|
|
83
83
|
</div><!-- /wrapper -->
|
|
84
84
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
85
85
|
Code coverage
|
|
86
|
-
generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at
|
|
86
|
+
generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Thu Mar 19 2026 23:33:03 GMT+0100 (Central European Standard Time)
|
|
87
87
|
</div>
|
|
88
88
|
</div>
|
|
89
89
|
<script src="prettify.js"></script>
|
|
@@ -84,71 +84,107 @@
|
|
|
84
84
|
59
|
|
85
85
|
60
|
|
86
86
|
61
|
|
87
|
-
62
|
|
87
|
+
62
|
|
88
|
+
63
|
|
89
|
+
64
|
|
90
|
+
65
|
|
91
|
+
66
|
|
92
|
+
67
|
|
93
|
+
68
|
|
94
|
+
69
|
|
95
|
+
70
|
|
96
|
+
71
|
|
97
|
+
72
|
|
98
|
+
73
|
|
99
|
+
74
|
|
100
|
+
75
|
|
101
|
+
76
|
|
102
|
+
77
|
|
103
|
+
78
|
|
104
|
+
79
|
|
105
|
+
80</td><td class="line-coverage quiet"><span class="cline-any cline-neutral"> </span>
|
|
88
106
|
<span class="cline-any cline-neutral"> </span>
|
|
89
107
|
<span class="cline-any cline-neutral"> </span>
|
|
90
|
-
<span class="cline-any cline-yes">
|
|
108
|
+
<span class="cline-any cline-yes">18x</span>
|
|
91
109
|
<span class="cline-any cline-neutral"> </span>
|
|
92
110
|
<span class="cline-any cline-neutral"> </span>
|
|
93
|
-
<span class="cline-any cline-yes">
|
|
111
|
+
<span class="cline-any cline-yes">18x</span>
|
|
94
112
|
<span class="cline-any cline-neutral"> </span>
|
|
95
113
|
<span class="cline-any cline-neutral"> </span>
|
|
96
114
|
<span class="cline-any cline-neutral"> </span>
|
|
97
115
|
<span class="cline-any cline-neutral"> </span>
|
|
98
116
|
<span class="cline-any cline-neutral"> </span>
|
|
99
117
|
<span class="cline-any cline-neutral"> </span>
|
|
100
|
-
<span class="cline-any cline-yes">
|
|
101
|
-
<span class="cline-any cline-yes">
|
|
118
|
+
<span class="cline-any cline-yes">18x</span>
|
|
119
|
+
<span class="cline-any cline-yes">4x</span>
|
|
102
120
|
<span class="cline-any cline-neutral"> </span>
|
|
103
|
-
<span class="cline-any cline-yes">
|
|
121
|
+
<span class="cline-any cline-yes">18x</span>
|
|
104
122
|
<span class="cline-any cline-yes">1x</span>
|
|
105
123
|
<span class="cline-any cline-neutral"> </span>
|
|
106
|
-
<span class="cline-any cline-yes">
|
|
107
|
-
<span class="cline-any cline-yes">
|
|
124
|
+
<span class="cline-any cline-yes">18x</span>
|
|
125
|
+
<span class="cline-any cline-yes">2x</span>
|
|
108
126
|
<span class="cline-any cline-neutral"> </span>
|
|
109
|
-
<span class="cline-any cline-yes">
|
|
110
|
-
<span class="cline-any cline-yes">
|
|
127
|
+
<span class="cline-any cline-yes">18x</span>
|
|
128
|
+
<span class="cline-any cline-yes">2x</span>
|
|
111
129
|
<span class="cline-any cline-neutral"> </span>
|
|
112
|
-
<span class="cline-any cline-yes">
|
|
130
|
+
<span class="cline-any cline-yes">18x</span>
|
|
113
131
|
<span class="cline-any cline-yes">2x</span>
|
|
114
132
|
<span class="cline-any cline-neutral"> </span>
|
|
115
|
-
<span class="cline-any cline-yes">
|
|
133
|
+
<span class="cline-any cline-yes">18x</span>
|
|
134
|
+
<span class="cline-any cline-yes">2x</span>
|
|
135
|
+
<span class="cline-any cline-neutral"> </span>
|
|
136
|
+
<span class="cline-any cline-yes">18x</span>
|
|
137
|
+
<span class="cline-any cline-yes">2x</span>
|
|
138
|
+
<span class="cline-any cline-neutral"> </span>
|
|
139
|
+
<span class="cline-any cline-yes">18x</span>
|
|
140
|
+
<span class="cline-any cline-yes">2x</span>
|
|
141
|
+
<span class="cline-any cline-neutral"> </span>
|
|
142
|
+
<span class="cline-any cline-yes">18x</span>
|
|
143
|
+
<span class="cline-any cline-yes">5x</span>
|
|
144
|
+
<span class="cline-any cline-neutral"> </span>
|
|
145
|
+
<span class="cline-any cline-yes">18x</span>
|
|
116
146
|
<span class="cline-any cline-yes">3x</span>
|
|
117
147
|
<span class="cline-any cline-neutral"> </span>
|
|
118
|
-
<span class="cline-any cline-yes">
|
|
148
|
+
<span class="cline-any cline-yes">18x</span>
|
|
149
|
+
<span class="cline-any cline-yes">3x</span>
|
|
150
|
+
<span class="cline-any cline-neutral"> </span>
|
|
151
|
+
<span class="cline-any cline-yes">18x</span>
|
|
119
152
|
<span class="cline-any cline-yes">2x</span>
|
|
120
153
|
<span class="cline-any cline-neutral"> </span>
|
|
121
|
-
<span class="cline-any cline-yes">
|
|
154
|
+
<span class="cline-any cline-yes">18x</span>
|
|
122
155
|
<span class="cline-any cline-yes">1x</span>
|
|
123
156
|
<span class="cline-any cline-neutral"> </span>
|
|
124
|
-
<span class="cline-any cline-yes">
|
|
157
|
+
<span class="cline-any cline-yes">18x</span>
|
|
125
158
|
<span class="cline-any cline-yes">1x</span>
|
|
126
159
|
<span class="cline-any cline-neutral"> </span>
|
|
127
|
-
<span class="cline-any cline-yes">
|
|
128
|
-
<span class="cline-any cline-yes">
|
|
160
|
+
<span class="cline-any cline-yes">18x</span>
|
|
161
|
+
<span class="cline-any cline-yes">4x</span>
|
|
129
162
|
<span class="cline-any cline-neutral"> </span>
|
|
130
|
-
<span class="cline-any cline-yes">
|
|
163
|
+
<span class="cline-any cline-yes">18x</span>
|
|
131
164
|
<span class="cline-any cline-yes">1x</span>
|
|
132
165
|
<span class="cline-any cline-neutral"> </span>
|
|
133
|
-
<span class="cline-any cline-yes">
|
|
166
|
+
<span class="cline-any cline-yes">18x</span>
|
|
134
167
|
<span class="cline-any cline-yes">2x</span>
|
|
135
168
|
<span class="cline-any cline-neutral"> </span>
|
|
136
|
-
<span class="cline-any cline-yes">
|
|
169
|
+
<span class="cline-any cline-yes">18x</span>
|
|
137
170
|
<span class="cline-any cline-yes">1x</span>
|
|
138
171
|
<span class="cline-any cline-neutral"> </span>
|
|
139
|
-
<span class="cline-any cline-yes">
|
|
172
|
+
<span class="cline-any cline-yes">18x</span>
|
|
140
173
|
<span class="cline-any cline-yes">2x</span>
|
|
141
174
|
<span class="cline-any cline-neutral"> </span>
|
|
142
|
-
<span class="cline-any cline-yes">
|
|
175
|
+
<span class="cline-any cline-yes">18x</span>
|
|
143
176
|
<span class="cline-any cline-yes">1x</span>
|
|
144
177
|
<span class="cline-any cline-neutral"> </span>
|
|
178
|
+
<span class="cline-any cline-yes">18x</span>
|
|
179
|
+
<span class="cline-any cline-yes">2x</span>
|
|
180
|
+
<span class="cline-any cline-neutral"> </span>
|
|
145
181
|
<span class="cline-any cline-neutral"> </span>
|
|
146
|
-
<span class="cline-any cline-yes">
|
|
182
|
+
<span class="cline-any cline-yes">18x</span>
|
|
147
183
|
<span class="cline-any cline-neutral"> </span>
|
|
148
184
|
<span class="cline-any cline-neutral"> </span></td><td class="text"><pre class="prettyprint lang-js">import requestParameters from './requestParameters'
|
|
149
185
|
|
|
150
186
|
export default document => {
|
|
151
|
-
const { language, landingPage, mc, gclid, aclid, fbclid, utm_source, utm_medium, utm_campaign, utm_content, utm_term, hsa_ad, hsa_cam, hsa_grp, hsa_kw, hsa_mt, hsa_src, hsa_tgt } = requestParameters(
|
|
187
|
+
const { language, landingPage, mc, gclid, aclid, fbclid, ttclid, li_fat_id, twclid, rdt_cid, tblci, utm_source, utm_medium, utm_campaign, utm_content, utm_term, hsa_ad, hsa_cam, hsa_grp, hsa_kw, hsa_mt, hsa_src, hsa_tgt, placement } = requestParameters(
|
|
152
188
|
document
|
|
153
189
|
)
|
|
154
190
|
const attributes = [
|
|
@@ -167,6 +203,21 @@ export default document => {
|
|
|
167
203
|
if (fbclid) {
|
|
168
204
|
attributes.push(`fbclid=${fbclid}`)
|
|
169
205
|
}
|
|
206
|
+
if (ttclid) {
|
|
207
|
+
attributes.push(`ttclid=${ttclid}`)
|
|
208
|
+
}
|
|
209
|
+
if (li_fat_id) {
|
|
210
|
+
attributes.push(`li_fat_id=${li_fat_id}`)
|
|
211
|
+
}
|
|
212
|
+
if (twclid) {
|
|
213
|
+
attributes.push(`twclid=${twclid}`)
|
|
214
|
+
}
|
|
215
|
+
if (rdt_cid) {
|
|
216
|
+
attributes.push(`rdt_cid=${rdt_cid}`)
|
|
217
|
+
}
|
|
218
|
+
if (tblci) {
|
|
219
|
+
attributes.push(`tblci=${tblci}`)
|
|
220
|
+
}
|
|
170
221
|
if (utm_source) {
|
|
171
222
|
attributes.push(`utm_source=${encodeURIComponent(utm_source)}`)
|
|
172
223
|
}
|
|
@@ -203,6 +254,9 @@ export default document => {
|
|
|
203
254
|
if (hsa_tgt) {
|
|
204
255
|
attributes.push(`hsa_tgt=${encodeURIComponent(hsa_tgt)}`)
|
|
205
256
|
}
|
|
257
|
+
if (placement) {
|
|
258
|
+
attributes.push(`placement=${encodeURIComponent(placement)}`)
|
|
259
|
+
}
|
|
206
260
|
|
|
207
261
|
return `/internal/pixel?${attributes.join('&')}`
|
|
208
262
|
}
|
|
@@ -212,7 +266,7 @@ export default document => {
|
|
|
212
266
|
</div><!-- /wrapper -->
|
|
213
267
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
214
268
|
Code coverage
|
|
215
|
-
generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at
|
|
269
|
+
generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Thu Mar 19 2026 23:33:03 GMT+0100 (Central European Standard Time)
|
|
216
270
|
</div>
|
|
217
271
|
</div>
|
|
218
272
|
<script src="prettify.js"></script>
|
|
@@ -78,41 +78,65 @@
|
|
|
78
78
|
53
|
|
79
79
|
54
|
|
80
80
|
55
|
|
81
|
-
56
|
|
82
|
-
|
|
81
|
+
56
|
|
82
|
+
57
|
|
83
|
+
58
|
|
84
|
+
59
|
|
85
|
+
60
|
|
86
|
+
61
|
|
87
|
+
62
|
|
88
|
+
63
|
|
89
|
+
64
|
|
90
|
+
65
|
|
91
|
+
66
|
|
92
|
+
67
|
|
93
|
+
68</td><td class="line-coverage quiet"><span class="cline-any cline-neutral"> </span>
|
|
94
|
+
<span class="cline-any cline-yes">660x</span>
|
|
83
95
|
<span class="cline-any cline-neutral"> </span>
|
|
84
|
-
<span class="cline-any cline-yes">
|
|
85
|
-
<span class="cline-any cline-yes">
|
|
96
|
+
<span class="cline-any cline-yes">660x</span>
|
|
97
|
+
<span class="cline-any cline-yes">1518x</span>
|
|
86
98
|
<span class="cline-any cline-neutral"> </span>
|
|
87
|
-
<span class="cline-any cline-yes">
|
|
99
|
+
<span class="cline-any cline-yes">1518x</span>
|
|
100
|
+
<span class="cline-any cline-neutral"> </span>
|
|
101
|
+
<span class="cline-any cline-neutral"> </span>
|
|
102
|
+
<span class="cline-any cline-yes">660x</span>
|
|
103
|
+
<span class="cline-any cline-neutral"> </span>
|
|
104
|
+
<span class="cline-any cline-neutral"> </span>
|
|
105
|
+
<span class="cline-any cline-neutral"> </span>
|
|
106
|
+
<span class="cline-any cline-yes">30x</span>
|
|
107
|
+
<span class="cline-any cline-yes">30x</span>
|
|
108
|
+
<span class="cline-any cline-yes">30x</span>
|
|
109
|
+
<span class="cline-any cline-yes">30x</span>
|
|
110
|
+
<span class="cline-any cline-yes">30x</span>
|
|
111
|
+
<span class="cline-any cline-yes">30x</span>
|
|
112
|
+
<span class="cline-any cline-yes">30x</span>
|
|
113
|
+
<span class="cline-any cline-yes">30x</span>
|
|
114
|
+
<span class="cline-any cline-yes">30x</span>
|
|
115
|
+
<span class="cline-any cline-yes">30x</span>
|
|
116
|
+
<span class="cline-any cline-yes">30x</span>
|
|
117
|
+
<span class="cline-any cline-yes">30x</span>
|
|
118
|
+
<span class="cline-any cline-yes">30x</span>
|
|
119
|
+
<span class="cline-any cline-yes">30x</span>
|
|
120
|
+
<span class="cline-any cline-yes">30x</span>
|
|
121
|
+
<span class="cline-any cline-yes">30x</span>
|
|
122
|
+
<span class="cline-any cline-yes">30x</span>
|
|
123
|
+
<span class="cline-any cline-yes">30x</span>
|
|
124
|
+
<span class="cline-any cline-yes">30x</span>
|
|
125
|
+
<span class="cline-any cline-yes">30x</span>
|
|
126
|
+
<span class="cline-any cline-yes">30x</span>
|
|
127
|
+
<span class="cline-any cline-yes">30x</span>
|
|
128
|
+
<span class="cline-any cline-yes">30x</span>
|
|
129
|
+
<span class="cline-any cline-yes">30x</span>
|
|
130
|
+
<span class="cline-any cline-yes">30x</span>
|
|
131
|
+
<span class="cline-any cline-yes">30x</span>
|
|
132
|
+
<span class="cline-any cline-neutral"> </span>
|
|
133
|
+
<span class="cline-any cline-yes">30x</span>
|
|
88
134
|
<span class="cline-any cline-neutral"> </span>
|
|
89
135
|
<span class="cline-any cline-neutral"> </span>
|
|
90
|
-
<span class="cline-any cline-yes">272x</span>
|
|
91
136
|
<span class="cline-any cline-neutral"> </span>
|
|
92
137
|
<span class="cline-any cline-neutral"> </span>
|
|
93
138
|
<span class="cline-any cline-neutral"> </span>
|
|
94
|
-
<span class="cline-any cline-yes">17x</span>
|
|
95
|
-
<span class="cline-any cline-yes">17x</span>
|
|
96
|
-
<span class="cline-any cline-yes">17x</span>
|
|
97
|
-
<span class="cline-any cline-yes">17x</span>
|
|
98
|
-
<span class="cline-any cline-yes">17x</span>
|
|
99
|
-
<span class="cline-any cline-yes">17x</span>
|
|
100
|
-
<span class="cline-any cline-yes">17x</span>
|
|
101
|
-
<span class="cline-any cline-yes">17x</span>
|
|
102
|
-
<span class="cline-any cline-yes">17x</span>
|
|
103
|
-
<span class="cline-any cline-yes">17x</span>
|
|
104
|
-
<span class="cline-any cline-yes">17x</span>
|
|
105
|
-
<span class="cline-any cline-yes">17x</span>
|
|
106
|
-
<span class="cline-any cline-yes">17x</span>
|
|
107
|
-
<span class="cline-any cline-yes">17x</span>
|
|
108
|
-
<span class="cline-any cline-yes">17x</span>
|
|
109
|
-
<span class="cline-any cline-yes">17x</span>
|
|
110
|
-
<span class="cline-any cline-yes">17x</span>
|
|
111
|
-
<span class="cline-any cline-yes">17x</span>
|
|
112
|
-
<span class="cline-any cline-yes">17x</span>
|
|
113
|
-
<span class="cline-any cline-yes">17x</span>
|
|
114
139
|
<span class="cline-any cline-neutral"> </span>
|
|
115
|
-
<span class="cline-any cline-yes">17x</span>
|
|
116
140
|
<span class="cline-any cline-neutral"> </span>
|
|
117
141
|
<span class="cline-any cline-neutral"> </span>
|
|
118
142
|
<span class="cline-any cline-neutral"> </span>
|
|
@@ -166,6 +190,12 @@ export default function requestParameters (document) {
|
|
|
166
190
|
const hsa_mt = findPropertyInParams(search, 'hsa_mt')
|
|
167
191
|
const hsa_src = findPropertyInParams(search, 'hsa_src')
|
|
168
192
|
const hsa_tgt = findPropertyInParams(search, 'hsa_tgt')
|
|
193
|
+
const ttclid = findPropertyInParams(search, 'ttclid')
|
|
194
|
+
const li_fat_id = findPropertyInParams(search, 'li_fat_id')
|
|
195
|
+
const twclid = findPropertyInParams(search, 'twclid')
|
|
196
|
+
const rdt_cid = findPropertyInParams(search, 'rdt_cid')
|
|
197
|
+
const tblci = findPropertyInParams(search, 'tblci')
|
|
198
|
+
const placement = findPropertyInParams(search, 'placement')
|
|
169
199
|
|
|
170
200
|
return {
|
|
171
201
|
language: locale,
|
|
@@ -174,6 +204,11 @@ export default function requestParameters (document) {
|
|
|
174
204
|
gclid,
|
|
175
205
|
aclid,
|
|
176
206
|
fbclid,
|
|
207
|
+
ttclid,
|
|
208
|
+
li_fat_id,
|
|
209
|
+
twclid,
|
|
210
|
+
rdt_cid,
|
|
211
|
+
tblci,
|
|
177
212
|
utm_source,
|
|
178
213
|
utm_medium,
|
|
179
214
|
utm_campaign,
|
|
@@ -185,7 +220,8 @@ export default function requestParameters (document) {
|
|
|
185
220
|
hsa_kw,
|
|
186
221
|
hsa_mt,
|
|
187
222
|
hsa_src,
|
|
188
|
-
hsa_tgt
|
|
223
|
+
hsa_tgt,
|
|
224
|
+
placement
|
|
189
225
|
}
|
|
190
226
|
}
|
|
191
227
|
</pre></td></tr>
|
|
@@ -194,7 +230,7 @@ export default function requestParameters (document) {
|
|
|
194
230
|
</div><!-- /wrapper -->
|
|
195
231
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
196
232
|
Code coverage
|
|
197
|
-
generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at
|
|
233
|
+
generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Thu Mar 19 2026 23:33:03 GMT+0100 (Central European Standard Time)
|
|
198
234
|
</div>
|
|
199
235
|
</div>
|
|
200
236
|
<script src="prettify.js"></script>
|
package/coverage/lcov.info
CHANGED
|
@@ -32,76 +32,100 @@ SF:/Users/joan.silio/code/factorial-pixel/src/pixelUrl.js
|
|
|
32
32
|
FN:3,(anonymous_0)
|
|
33
33
|
FNF:1
|
|
34
34
|
FNH:1
|
|
35
|
-
FNDA:
|
|
36
|
-
DA:4,
|
|
37
|
-
DA:7,
|
|
38
|
-
DA:14,
|
|
39
|
-
DA:15,
|
|
40
|
-
DA:17,
|
|
35
|
+
FNDA:18,(anonymous_0)
|
|
36
|
+
DA:4,18
|
|
37
|
+
DA:7,18
|
|
38
|
+
DA:14,18
|
|
39
|
+
DA:15,4
|
|
40
|
+
DA:17,18
|
|
41
41
|
DA:18,1
|
|
42
|
-
DA:20,
|
|
43
|
-
DA:21,
|
|
44
|
-
DA:23,
|
|
45
|
-
DA:24,
|
|
46
|
-
DA:26,
|
|
42
|
+
DA:20,18
|
|
43
|
+
DA:21,2
|
|
44
|
+
DA:23,18
|
|
45
|
+
DA:24,2
|
|
46
|
+
DA:26,18
|
|
47
47
|
DA:27,2
|
|
48
|
-
DA:29,
|
|
49
|
-
DA:30,
|
|
50
|
-
DA:32,
|
|
48
|
+
DA:29,18
|
|
49
|
+
DA:30,2
|
|
50
|
+
DA:32,18
|
|
51
51
|
DA:33,2
|
|
52
|
-
DA:35,
|
|
53
|
-
DA:36,
|
|
54
|
-
DA:38,
|
|
55
|
-
DA:39,
|
|
56
|
-
DA:41,
|
|
52
|
+
DA:35,18
|
|
53
|
+
DA:36,2
|
|
54
|
+
DA:38,18
|
|
55
|
+
DA:39,5
|
|
56
|
+
DA:41,18
|
|
57
57
|
DA:42,3
|
|
58
|
-
DA:44,
|
|
59
|
-
DA:45,
|
|
60
|
-
DA:47,
|
|
58
|
+
DA:44,18
|
|
59
|
+
DA:45,3
|
|
60
|
+
DA:47,18
|
|
61
61
|
DA:48,2
|
|
62
|
-
DA:50,
|
|
62
|
+
DA:50,18
|
|
63
63
|
DA:51,1
|
|
64
|
-
DA:53,
|
|
65
|
-
DA:54,
|
|
66
|
-
DA:56,
|
|
67
|
-
DA:57,
|
|
68
|
-
DA:
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
64
|
+
DA:53,18
|
|
65
|
+
DA:54,1
|
|
66
|
+
DA:56,18
|
|
67
|
+
DA:57,4
|
|
68
|
+
DA:59,18
|
|
69
|
+
DA:60,1
|
|
70
|
+
DA:62,18
|
|
71
|
+
DA:63,2
|
|
72
|
+
DA:65,18
|
|
73
|
+
DA:66,1
|
|
74
|
+
DA:68,18
|
|
75
|
+
DA:69,2
|
|
76
|
+
DA:71,18
|
|
77
|
+
DA:72,1
|
|
78
|
+
DA:74,18
|
|
79
|
+
DA:75,2
|
|
80
|
+
DA:78,18
|
|
81
|
+
LF:45
|
|
82
|
+
LH:45
|
|
83
|
+
BRDA:8,0,0,18
|
|
84
|
+
BRDA:8,0,1,17
|
|
85
|
+
BRDA:14,1,0,4
|
|
86
|
+
BRDA:14,1,1,14
|
|
75
87
|
BRDA:17,2,0,1
|
|
76
|
-
BRDA:17,2,1,
|
|
77
|
-
BRDA:20,3,0,
|
|
78
|
-
BRDA:20,3,1,
|
|
79
|
-
BRDA:23,4,0,
|
|
80
|
-
BRDA:23,4,1,
|
|
88
|
+
BRDA:17,2,1,17
|
|
89
|
+
BRDA:20,3,0,2
|
|
90
|
+
BRDA:20,3,1,16
|
|
91
|
+
BRDA:23,4,0,2
|
|
92
|
+
BRDA:23,4,1,16
|
|
81
93
|
BRDA:26,5,0,2
|
|
82
|
-
BRDA:26,5,1,
|
|
83
|
-
BRDA:29,6,0,
|
|
84
|
-
BRDA:29,6,1,
|
|
94
|
+
BRDA:26,5,1,16
|
|
95
|
+
BRDA:29,6,0,2
|
|
96
|
+
BRDA:29,6,1,16
|
|
85
97
|
BRDA:32,7,0,2
|
|
86
|
-
BRDA:32,7,1,
|
|
87
|
-
BRDA:35,8,0,
|
|
88
|
-
BRDA:35,8,1,
|
|
89
|
-
BRDA:38,9,0,
|
|
90
|
-
BRDA:38,9,1,
|
|
98
|
+
BRDA:32,7,1,16
|
|
99
|
+
BRDA:35,8,0,2
|
|
100
|
+
BRDA:35,8,1,16
|
|
101
|
+
BRDA:38,9,0,5
|
|
102
|
+
BRDA:38,9,1,13
|
|
91
103
|
BRDA:41,10,0,3
|
|
92
|
-
BRDA:41,10,1,
|
|
93
|
-
BRDA:44,11,0,
|
|
94
|
-
BRDA:44,11,1,
|
|
104
|
+
BRDA:41,10,1,15
|
|
105
|
+
BRDA:44,11,0,3
|
|
106
|
+
BRDA:44,11,1,15
|
|
95
107
|
BRDA:47,12,0,2
|
|
96
|
-
BRDA:47,12,1,
|
|
108
|
+
BRDA:47,12,1,16
|
|
97
109
|
BRDA:50,13,0,1
|
|
98
|
-
BRDA:50,13,1,
|
|
99
|
-
BRDA:53,14,0,
|
|
100
|
-
BRDA:53,14,1,
|
|
101
|
-
BRDA:56,15,0,
|
|
102
|
-
BRDA:56,15,1,
|
|
103
|
-
|
|
104
|
-
|
|
110
|
+
BRDA:50,13,1,17
|
|
111
|
+
BRDA:53,14,0,1
|
|
112
|
+
BRDA:53,14,1,17
|
|
113
|
+
BRDA:56,15,0,4
|
|
114
|
+
BRDA:56,15,1,14
|
|
115
|
+
BRDA:59,16,0,1
|
|
116
|
+
BRDA:59,16,1,17
|
|
117
|
+
BRDA:62,17,0,2
|
|
118
|
+
BRDA:62,17,1,16
|
|
119
|
+
BRDA:65,18,0,1
|
|
120
|
+
BRDA:65,18,1,17
|
|
121
|
+
BRDA:68,19,0,2
|
|
122
|
+
BRDA:68,19,1,16
|
|
123
|
+
BRDA:71,20,0,1
|
|
124
|
+
BRDA:71,20,1,17
|
|
125
|
+
BRDA:74,21,0,2
|
|
126
|
+
BRDA:74,21,1,16
|
|
127
|
+
BRF:44
|
|
128
|
+
BRH:44
|
|
105
129
|
end_of_record
|
|
106
130
|
TN:
|
|
107
131
|
SF:/Users/joan.silio/code/factorial-pixel/src/requestParameters.js
|
|
@@ -110,37 +134,43 @@ FN:4,(anonymous_1)
|
|
|
110
134
|
FN:13,requestParameters
|
|
111
135
|
FNF:3
|
|
112
136
|
FNH:3
|
|
113
|
-
FNDA:
|
|
114
|
-
FNDA:
|
|
115
|
-
FNDA:
|
|
116
|
-
DA:2,
|
|
117
|
-
DA:4,
|
|
118
|
-
DA:5,
|
|
119
|
-
DA:7,
|
|
120
|
-
DA:10,
|
|
121
|
-
DA:14,
|
|
122
|
-
DA:15,
|
|
123
|
-
DA:16,
|
|
124
|
-
DA:17,
|
|
125
|
-
DA:18,
|
|
126
|
-
DA:19,
|
|
127
|
-
DA:20,
|
|
128
|
-
DA:21,
|
|
129
|
-
DA:22,
|
|
130
|
-
DA:23,
|
|
131
|
-
DA:24,
|
|
132
|
-
DA:25,
|
|
133
|
-
DA:26,
|
|
134
|
-
DA:27,
|
|
135
|
-
DA:28,
|
|
136
|
-
DA:29,
|
|
137
|
-
DA:30,
|
|
138
|
-
DA:31,
|
|
139
|
-
DA:32,
|
|
140
|
-
DA:33,
|
|
141
|
-
DA:
|
|
142
|
-
|
|
143
|
-
|
|
137
|
+
FNDA:660,findPropertyInParams
|
|
138
|
+
FNDA:1518,(anonymous_1)
|
|
139
|
+
FNDA:30,requestParameters
|
|
140
|
+
DA:2,660
|
|
141
|
+
DA:4,660
|
|
142
|
+
DA:5,1518
|
|
143
|
+
DA:7,1518
|
|
144
|
+
DA:10,660
|
|
145
|
+
DA:14,30
|
|
146
|
+
DA:15,30
|
|
147
|
+
DA:16,30
|
|
148
|
+
DA:17,30
|
|
149
|
+
DA:18,30
|
|
150
|
+
DA:19,30
|
|
151
|
+
DA:20,30
|
|
152
|
+
DA:21,30
|
|
153
|
+
DA:22,30
|
|
154
|
+
DA:23,30
|
|
155
|
+
DA:24,30
|
|
156
|
+
DA:25,30
|
|
157
|
+
DA:26,30
|
|
158
|
+
DA:27,30
|
|
159
|
+
DA:28,30
|
|
160
|
+
DA:29,30
|
|
161
|
+
DA:30,30
|
|
162
|
+
DA:31,30
|
|
163
|
+
DA:32,30
|
|
164
|
+
DA:33,30
|
|
165
|
+
DA:34,30
|
|
166
|
+
DA:35,30
|
|
167
|
+
DA:36,30
|
|
168
|
+
DA:37,30
|
|
169
|
+
DA:38,30
|
|
170
|
+
DA:39,30
|
|
171
|
+
DA:41,30
|
|
172
|
+
LF:32
|
|
173
|
+
LH:32
|
|
144
174
|
BRDA:1,0,0,0
|
|
145
175
|
BRF:1
|
|
146
176
|
BRH:0
|