@customerio/cdp-analytics-browser 0.0.0-test-oidc

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.
Files changed (561) hide show
  1. package/LICENSE.MD +22 -0
  2. package/README.md +36 -0
  3. package/dist/cjs/browser/browser-umd.js +20 -0
  4. package/dist/cjs/browser/browser-umd.js.map +1 -0
  5. package/dist/cjs/browser/index.js +334 -0
  6. package/dist/cjs/browser/index.js.map +1 -0
  7. package/dist/cjs/browser/standalone-analytics.js +62 -0
  8. package/dist/cjs/browser/standalone-analytics.js.map +1 -0
  9. package/dist/cjs/browser/standalone-interface.js +3 -0
  10. package/dist/cjs/browser/standalone-interface.js.map +1 -0
  11. package/dist/cjs/browser/standalone.js +90 -0
  12. package/dist/cjs/browser/standalone.js.map +1 -0
  13. package/dist/cjs/core/analytics/index.js +545 -0
  14. package/dist/cjs/core/analytics/index.js.map +1 -0
  15. package/dist/cjs/core/analytics/interfaces.js +3 -0
  16. package/dist/cjs/core/analytics/interfaces.js.map +1 -0
  17. package/dist/cjs/core/arguments-resolver/index.js +106 -0
  18. package/dist/cjs/core/arguments-resolver/index.js.map +1 -0
  19. package/dist/cjs/core/auto-track.js +108 -0
  20. package/dist/cjs/core/auto-track.js.map +1 -0
  21. package/dist/cjs/core/buffer/index.js +237 -0
  22. package/dist/cjs/core/buffer/index.js.map +1 -0
  23. package/dist/cjs/core/buffer/snippet.js +32 -0
  24. package/dist/cjs/core/buffer/snippet.js.map +1 -0
  25. package/dist/cjs/core/callback/index.js +7 -0
  26. package/dist/cjs/core/callback/index.js.map +1 -0
  27. package/dist/cjs/core/connection/index.js +16 -0
  28. package/dist/cjs/core/connection/index.js.map +1 -0
  29. package/dist/cjs/core/context/index.js +19 -0
  30. package/dist/cjs/core/context/index.js.map +1 -0
  31. package/dist/cjs/core/environment/index.js +12 -0
  32. package/dist/cjs/core/environment/index.js.map +1 -0
  33. package/dist/cjs/core/events/index.js +134 -0
  34. package/dist/cjs/core/events/index.js.map +1 -0
  35. package/dist/cjs/core/events/interfaces.js +3 -0
  36. package/dist/cjs/core/events/interfaces.js.map +1 -0
  37. package/dist/cjs/core/inspector/index.js +14 -0
  38. package/dist/cjs/core/inspector/index.js.map +1 -0
  39. package/dist/cjs/core/plugin/index.js +3 -0
  40. package/dist/cjs/core/plugin/index.js.map +1 -0
  41. package/dist/cjs/core/query-string/gracefulDecodeURIComponent.js +20 -0
  42. package/dist/cjs/core/query-string/gracefulDecodeURIComponent.js.map +1 -0
  43. package/dist/cjs/core/query-string/index.js +48 -0
  44. package/dist/cjs/core/query-string/index.js.map +1 -0
  45. package/dist/cjs/core/query-string/pickPrefix.js +20 -0
  46. package/dist/cjs/core/query-string/pickPrefix.js.map +1 -0
  47. package/dist/cjs/core/queue/event-queue.js +15 -0
  48. package/dist/cjs/core/queue/event-queue.js.map +1 -0
  49. package/dist/cjs/core/stats/index.js +23 -0
  50. package/dist/cjs/core/stats/index.js.map +1 -0
  51. package/dist/cjs/core/stats/remote-metrics.js +107 -0
  52. package/dist/cjs/core/stats/remote-metrics.js.map +1 -0
  53. package/dist/cjs/core/user/index.js +422 -0
  54. package/dist/cjs/core/user/index.js.map +1 -0
  55. package/dist/cjs/core/user/tld.js +64 -0
  56. package/dist/cjs/core/user/tld.js.map +1 -0
  57. package/dist/cjs/generated/version.js +6 -0
  58. package/dist/cjs/generated/version.js.map +1 -0
  59. package/dist/cjs/index.js +15 -0
  60. package/dist/cjs/index.js.map +1 -0
  61. package/dist/cjs/lib/bind-all.js +17 -0
  62. package/dist/cjs/lib/bind-all.js.map +1 -0
  63. package/dist/cjs/lib/browser-polyfill.js +22 -0
  64. package/dist/cjs/lib/browser-polyfill.js.map +1 -0
  65. package/dist/cjs/lib/create-deferred.js +21 -0
  66. package/dist/cjs/lib/create-deferred.js.map +1 -0
  67. package/dist/cjs/lib/csp-detection.js +33 -0
  68. package/dist/cjs/lib/csp-detection.js.map +1 -0
  69. package/dist/cjs/lib/embedded-write-key.js +22 -0
  70. package/dist/cjs/lib/embedded-write-key.js.map +1 -0
  71. package/dist/cjs/lib/fetch.js +19 -0
  72. package/dist/cjs/lib/fetch.js.map +1 -0
  73. package/dist/cjs/lib/get-global.js +21 -0
  74. package/dist/cjs/lib/get-global.js.map +1 -0
  75. package/dist/cjs/lib/get-process-env.js +15 -0
  76. package/dist/cjs/lib/get-process-env.js.map +1 -0
  77. package/dist/cjs/lib/global-analytics-helper.js +34 -0
  78. package/dist/cjs/lib/global-analytics-helper.js.map +1 -0
  79. package/dist/cjs/lib/group-by.js +28 -0
  80. package/dist/cjs/lib/group-by.js.map +1 -0
  81. package/dist/cjs/lib/is-plan-event-enabled.js +20 -0
  82. package/dist/cjs/lib/is-plan-event-enabled.js.map +1 -0
  83. package/dist/cjs/lib/is-thenable.js +15 -0
  84. package/dist/cjs/lib/is-thenable.js.map +1 -0
  85. package/dist/cjs/lib/load-script.js +56 -0
  86. package/dist/cjs/lib/load-script.js.map +1 -0
  87. package/dist/cjs/lib/merged-options.js +31 -0
  88. package/dist/cjs/lib/merged-options.js.map +1 -0
  89. package/dist/cjs/lib/on-page-leave.js +35 -0
  90. package/dist/cjs/lib/on-page-leave.js.map +1 -0
  91. package/dist/cjs/lib/p-while.js +25 -0
  92. package/dist/cjs/lib/p-while.js.map +1 -0
  93. package/dist/cjs/lib/parse-cdn.js +86 -0
  94. package/dist/cjs/lib/parse-cdn.js.map +1 -0
  95. package/dist/cjs/lib/priority-queue/backoff.js +10 -0
  96. package/dist/cjs/lib/priority-queue/backoff.js.map +1 -0
  97. package/dist/cjs/lib/priority-queue/index.js +7 -0
  98. package/dist/cjs/lib/priority-queue/index.js.map +1 -0
  99. package/dist/cjs/lib/priority-queue/persisted.js +108 -0
  100. package/dist/cjs/lib/priority-queue/persisted.js.map +1 -0
  101. package/dist/cjs/lib/sleep.js +10 -0
  102. package/dist/cjs/lib/sleep.js.map +1 -0
  103. package/dist/cjs/lib/to-facade.js +32 -0
  104. package/dist/cjs/lib/to-facade.js.map +1 -0
  105. package/dist/cjs/node/index.js +43 -0
  106. package/dist/cjs/node/index.js.map +1 -0
  107. package/dist/cjs/node/node.browser.js +13 -0
  108. package/dist/cjs/node/node.browser.js.map +1 -0
  109. package/dist/cjs/plugins/ajs-destination/index.js +345 -0
  110. package/dist/cjs/plugins/ajs-destination/index.js.map +1 -0
  111. package/dist/cjs/plugins/ajs-destination/loader.js +110 -0
  112. package/dist/cjs/plugins/ajs-destination/loader.js.map +1 -0
  113. package/dist/cjs/plugins/ajs-destination/types.js +3 -0
  114. package/dist/cjs/plugins/ajs-destination/types.js.map +1 -0
  115. package/dist/cjs/plugins/ajs-destination/utils.js +23 -0
  116. package/dist/cjs/plugins/ajs-destination/utils.js.map +1 -0
  117. package/dist/cjs/plugins/analytics-node/index.js +65 -0
  118. package/dist/cjs/plugins/analytics-node/index.js.map +1 -0
  119. package/dist/cjs/plugins/customerio/batched-dispatcher.js +102 -0
  120. package/dist/cjs/plugins/customerio/batched-dispatcher.js.map +1 -0
  121. package/dist/cjs/plugins/customerio/fetch-dispatcher.js +18 -0
  122. package/dist/cjs/plugins/customerio/fetch-dispatcher.js.map +1 -0
  123. package/dist/cjs/plugins/customerio/index.js +98 -0
  124. package/dist/cjs/plugins/customerio/index.js.map +1 -0
  125. package/dist/cjs/plugins/customerio/normalize.js +176 -0
  126. package/dist/cjs/plugins/customerio/normalize.js.map +1 -0
  127. package/dist/cjs/plugins/customerio/schedule-flush.js +76 -0
  128. package/dist/cjs/plugins/customerio/schedule-flush.js.map +1 -0
  129. package/dist/cjs/plugins/in-app-plugin/events.js +41 -0
  130. package/dist/cjs/plugins/in-app-plugin/events.js.map +1 -0
  131. package/dist/cjs/plugins/in-app-plugin/index.js +237 -0
  132. package/dist/cjs/plugins/in-app-plugin/index.js.map +1 -0
  133. package/dist/cjs/plugins/legacy-video-plugins/index.js +25 -0
  134. package/dist/cjs/plugins/legacy-video-plugins/index.js.map +1 -0
  135. package/dist/cjs/plugins/middleware/index.js +124 -0
  136. package/dist/cjs/plugins/middleware/index.js.map +1 -0
  137. package/dist/cjs/plugins/page-enrichment/index.js +98 -0
  138. package/dist/cjs/plugins/page-enrichment/index.js.map +1 -0
  139. package/dist/cjs/plugins/remote-loader/index.js +211 -0
  140. package/dist/cjs/plugins/remote-loader/index.js.map +1 -0
  141. package/dist/cjs/plugins/remote-middleware/index.js +70 -0
  142. package/dist/cjs/plugins/remote-middleware/index.js.map +1 -0
  143. package/dist/cjs/plugins/routing-middleware/index.js +27 -0
  144. package/dist/cjs/plugins/routing-middleware/index.js.map +1 -0
  145. package/dist/cjs/plugins/schema-filter/index.js +67 -0
  146. package/dist/cjs/plugins/schema-filter/index.js.map +1 -0
  147. package/dist/cjs/plugins/validation/index.js +70 -0
  148. package/dist/cjs/plugins/validation/index.js.map +1 -0
  149. package/dist/cjs/vendor/tsub/tsub.js +645 -0
  150. package/dist/cjs/vendor/tsub/tsub.js.map +1 -0
  151. package/dist/cjs/vendor/tsub/types.js +3 -0
  152. package/dist/cjs/vendor/tsub/types.js.map +1 -0
  153. package/dist/pkg/browser/browser-umd.js +17 -0
  154. package/dist/pkg/browser/browser-umd.js.map +1 -0
  155. package/dist/pkg/browser/index.js +330 -0
  156. package/dist/pkg/browser/index.js.map +1 -0
  157. package/dist/pkg/browser/standalone-analytics.js +58 -0
  158. package/dist/pkg/browser/standalone-analytics.js.map +1 -0
  159. package/dist/pkg/browser/standalone-interface.js +2 -0
  160. package/dist/pkg/browser/standalone-interface.js.map +1 -0
  161. package/dist/pkg/browser/standalone.js +88 -0
  162. package/dist/pkg/browser/standalone.js.map +1 -0
  163. package/dist/pkg/core/analytics/index.js +542 -0
  164. package/dist/pkg/core/analytics/index.js.map +1 -0
  165. package/dist/pkg/core/analytics/interfaces.js +2 -0
  166. package/dist/pkg/core/analytics/interfaces.js.map +1 -0
  167. package/dist/pkg/core/arguments-resolver/index.js +99 -0
  168. package/dist/pkg/core/arguments-resolver/index.js.map +1 -0
  169. package/dist/pkg/core/auto-track.js +103 -0
  170. package/dist/pkg/core/auto-track.js.map +1 -0
  171. package/dist/pkg/core/buffer/index.js +231 -0
  172. package/dist/pkg/core/buffer/index.js.map +1 -0
  173. package/dist/pkg/core/buffer/snippet.js +27 -0
  174. package/dist/pkg/core/buffer/snippet.js.map +1 -0
  175. package/dist/pkg/core/callback/index.js +2 -0
  176. package/dist/pkg/core/callback/index.js.map +1 -0
  177. package/dist/pkg/core/connection/index.js +11 -0
  178. package/dist/pkg/core/connection/index.js.map +1 -0
  179. package/dist/pkg/core/context/index.js +16 -0
  180. package/dist/pkg/core/context/index.js.map +1 -0
  181. package/dist/pkg/core/environment/index.js +7 -0
  182. package/dist/pkg/core/environment/index.js.map +1 -0
  183. package/dist/pkg/core/events/index.js +131 -0
  184. package/dist/pkg/core/events/index.js.map +1 -0
  185. package/dist/pkg/core/events/interfaces.js +2 -0
  186. package/dist/pkg/core/events/interfaces.js.map +1 -0
  187. package/dist/pkg/core/inspector/index.js +10 -0
  188. package/dist/pkg/core/inspector/index.js.map +1 -0
  189. package/dist/pkg/core/plugin/index.js +2 -0
  190. package/dist/pkg/core/plugin/index.js.map +1 -0
  191. package/dist/pkg/core/query-string/gracefulDecodeURIComponent.js +16 -0
  192. package/dist/pkg/core/query-string/gracefulDecodeURIComponent.js.map +1 -0
  193. package/dist/pkg/core/query-string/index.js +44 -0
  194. package/dist/pkg/core/query-string/index.js.map +1 -0
  195. package/dist/pkg/core/query-string/pickPrefix.js +16 -0
  196. package/dist/pkg/core/query-string/pickPrefix.js.map +1 -0
  197. package/dist/pkg/core/queue/event-queue.js +12 -0
  198. package/dist/pkg/core/queue/event-queue.js.map +1 -0
  199. package/dist/pkg/core/stats/index.js +20 -0
  200. package/dist/pkg/core/stats/index.js.map +1 -0
  201. package/dist/pkg/core/stats/remote-metrics.js +104 -0
  202. package/dist/pkg/core/stats/remote-metrics.js.map +1 -0
  203. package/dist/pkg/core/user/index.js +418 -0
  204. package/dist/pkg/core/user/index.js.map +1 -0
  205. package/dist/pkg/core/user/tld.js +59 -0
  206. package/dist/pkg/core/user/tld.js.map +1 -0
  207. package/dist/pkg/generated/version.js +3 -0
  208. package/dist/pkg/generated/version.js.map +1 -0
  209. package/dist/pkg/index.js +10 -0
  210. package/dist/pkg/index.js.map +1 -0
  211. package/dist/pkg/lib/bind-all.js +14 -0
  212. package/dist/pkg/lib/bind-all.js.map +1 -0
  213. package/dist/pkg/lib/browser-polyfill.js +18 -0
  214. package/dist/pkg/lib/browser-polyfill.js.map +1 -0
  215. package/dist/pkg/lib/create-deferred.js +17 -0
  216. package/dist/pkg/lib/create-deferred.js.map +1 -0
  217. package/dist/pkg/lib/csp-detection.js +29 -0
  218. package/dist/pkg/lib/csp-detection.js.map +1 -0
  219. package/dist/pkg/lib/embedded-write-key.js +18 -0
  220. package/dist/pkg/lib/embedded-write-key.js.map +1 -0
  221. package/dist/pkg/lib/fetch.js +14 -0
  222. package/dist/pkg/lib/fetch.js.map +1 -0
  223. package/dist/pkg/lib/get-global.js +17 -0
  224. package/dist/pkg/lib/get-global.js.map +1 -0
  225. package/dist/pkg/lib/get-process-env.js +11 -0
  226. package/dist/pkg/lib/get-process-env.js.map +1 -0
  227. package/dist/pkg/lib/global-analytics-helper.js +28 -0
  228. package/dist/pkg/lib/global-analytics-helper.js.map +1 -0
  229. package/dist/pkg/lib/group-by.js +24 -0
  230. package/dist/pkg/lib/group-by.js.map +1 -0
  231. package/dist/pkg/lib/is-plan-event-enabled.js +16 -0
  232. package/dist/pkg/lib/is-plan-event-enabled.js.map +1 -0
  233. package/dist/pkg/lib/is-thenable.js +11 -0
  234. package/dist/pkg/lib/is-thenable.js.map +1 -0
  235. package/dist/pkg/lib/load-script.js +51 -0
  236. package/dist/pkg/lib/load-script.js.map +1 -0
  237. package/dist/pkg/lib/merged-options.js +27 -0
  238. package/dist/pkg/lib/merged-options.js.map +1 -0
  239. package/dist/pkg/lib/on-page-leave.js +31 -0
  240. package/dist/pkg/lib/on-page-leave.js.map +1 -0
  241. package/dist/pkg/lib/p-while.js +21 -0
  242. package/dist/pkg/lib/p-while.js.map +1 -0
  243. package/dist/pkg/lib/parse-cdn.js +79 -0
  244. package/dist/pkg/lib/parse-cdn.js.map +1 -0
  245. package/dist/pkg/lib/priority-queue/backoff.js +6 -0
  246. package/dist/pkg/lib/priority-queue/backoff.js.map +1 -0
  247. package/dist/pkg/lib/priority-queue/index.js +3 -0
  248. package/dist/pkg/lib/priority-queue/index.js.map +1 -0
  249. package/dist/pkg/lib/priority-queue/persisted.js +105 -0
  250. package/dist/pkg/lib/priority-queue/persisted.js.map +1 -0
  251. package/dist/pkg/lib/sleep.js +6 -0
  252. package/dist/pkg/lib/sleep.js.map +1 -0
  253. package/dist/pkg/lib/to-facade.js +28 -0
  254. package/dist/pkg/lib/to-facade.js.map +1 -0
  255. package/dist/pkg/node/index.js +40 -0
  256. package/dist/pkg/node/index.js.map +1 -0
  257. package/dist/pkg/node/node.browser.js +10 -0
  258. package/dist/pkg/node/node.browser.js.map +1 -0
  259. package/dist/pkg/plugins/ajs-destination/index.js +341 -0
  260. package/dist/pkg/plugins/ajs-destination/index.js.map +1 -0
  261. package/dist/pkg/plugins/ajs-destination/loader.js +102 -0
  262. package/dist/pkg/plugins/ajs-destination/loader.js.map +1 -0
  263. package/dist/pkg/plugins/ajs-destination/types.js +2 -0
  264. package/dist/pkg/plugins/ajs-destination/types.js.map +1 -0
  265. package/dist/pkg/plugins/ajs-destination/utils.js +18 -0
  266. package/dist/pkg/plugins/ajs-destination/utils.js.map +1 -0
  267. package/dist/pkg/plugins/analytics-node/index.js +60 -0
  268. package/dist/pkg/plugins/analytics-node/index.js.map +1 -0
  269. package/dist/pkg/plugins/customerio/batched-dispatcher.js +99 -0
  270. package/dist/pkg/plugins/customerio/batched-dispatcher.js.map +1 -0
  271. package/dist/pkg/plugins/customerio/fetch-dispatcher.js +15 -0
  272. package/dist/pkg/plugins/customerio/fetch-dispatcher.js.map +1 -0
  273. package/dist/pkg/plugins/customerio/index.js +94 -0
  274. package/dist/pkg/plugins/customerio/index.js.map +1 -0
  275. package/dist/pkg/plugins/customerio/normalize.js +168 -0
  276. package/dist/pkg/plugins/customerio/normalize.js.map +1 -0
  277. package/dist/pkg/plugins/customerio/schedule-flush.js +72 -0
  278. package/dist/pkg/plugins/customerio/schedule-flush.js.map +1 -0
  279. package/dist/pkg/plugins/in-app-plugin/events.js +36 -0
  280. package/dist/pkg/plugins/in-app-plugin/events.js.map +1 -0
  281. package/dist/pkg/plugins/in-app-plugin/index.js +233 -0
  282. package/dist/pkg/plugins/in-app-plugin/index.js.map +1 -0
  283. package/dist/pkg/plugins/legacy-video-plugins/index.js +25 -0
  284. package/dist/pkg/plugins/legacy-video-plugins/index.js.map +1 -0
  285. package/dist/pkg/plugins/middleware/index.js +119 -0
  286. package/dist/pkg/plugins/middleware/index.js.map +1 -0
  287. package/dist/pkg/plugins/page-enrichment/index.js +93 -0
  288. package/dist/pkg/plugins/page-enrichment/index.js.map +1 -0
  289. package/dist/pkg/plugins/remote-loader/index.js +207 -0
  290. package/dist/pkg/plugins/remote-loader/index.js.map +1 -0
  291. package/dist/pkg/plugins/remote-middleware/index.js +66 -0
  292. package/dist/pkg/plugins/remote-middleware/index.js.map +1 -0
  293. package/dist/pkg/plugins/routing-middleware/index.js +22 -0
  294. package/dist/pkg/plugins/routing-middleware/index.js.map +1 -0
  295. package/dist/pkg/plugins/schema-filter/index.js +63 -0
  296. package/dist/pkg/plugins/schema-filter/index.js.map +1 -0
  297. package/dist/pkg/plugins/validation/index.js +63 -0
  298. package/dist/pkg/plugins/validation/index.js.map +1 -0
  299. package/dist/pkg/vendor/tsub/tsub.js +645 -0
  300. package/dist/pkg/vendor/tsub/tsub.js.map +1 -0
  301. package/dist/pkg/vendor/tsub/types.js +2 -0
  302. package/dist/pkg/vendor/tsub/types.js.map +1 -0
  303. package/dist/types/browser/browser-umd.d.ts +2 -0
  304. package/dist/types/browser/browser-umd.d.ts.map +1 -0
  305. package/dist/types/browser/index.d.ts +86 -0
  306. package/dist/types/browser/index.d.ts.map +1 -0
  307. package/dist/types/browser/standalone-analytics.d.ts +2 -0
  308. package/dist/types/browser/standalone-analytics.d.ts.map +1 -0
  309. package/dist/types/browser/standalone-interface.d.ts +10 -0
  310. package/dist/types/browser/standalone-interface.d.ts.map +1 -0
  311. package/dist/types/browser/standalone.d.ts +2 -0
  312. package/dist/types/browser/standalone.d.ts.map +1 -0
  313. package/dist/types/core/analytics/index.d.ts +121 -0
  314. package/dist/types/core/analytics/index.d.ts.map +1 -0
  315. package/dist/types/core/analytics/interfaces.d.ts +77 -0
  316. package/dist/types/core/analytics/interfaces.d.ts.map +1 -0
  317. package/dist/types/core/arguments-resolver/index.d.ts +34 -0
  318. package/dist/types/core/arguments-resolver/index.d.ts.map +1 -0
  319. package/dist/types/core/auto-track.d.ts +10 -0
  320. package/dist/types/core/auto-track.d.ts.map +1 -0
  321. package/dist/types/core/buffer/index.d.ts +86 -0
  322. package/dist/types/core/buffer/index.d.ts.map +1 -0
  323. package/dist/types/core/buffer/snippet.d.ts +15 -0
  324. package/dist/types/core/buffer/snippet.d.ts.map +1 -0
  325. package/dist/types/core/callback/index.d.ts +2 -0
  326. package/dist/types/core/callback/index.d.ts.map +1 -0
  327. package/dist/types/core/connection/index.d.ts +3 -0
  328. package/dist/types/core/connection/index.d.ts.map +1 -0
  329. package/dist/types/core/context/index.d.ts +9 -0
  330. package/dist/types/core/context/index.d.ts.map +1 -0
  331. package/dist/types/core/environment/index.d.ts +3 -0
  332. package/dist/types/core/environment/index.d.ts.map +1 -0
  333. package/dist/types/core/events/index.d.ts +21 -0
  334. package/dist/types/core/events/index.d.ts.map +1 -0
  335. package/dist/types/core/events/interfaces.d.ts +9 -0
  336. package/dist/types/core/events/interfaces.d.ts.map +1 -0
  337. package/dist/types/core/inspector/index.d.ts +3 -0
  338. package/dist/types/core/inspector/index.d.ts.map +1 -0
  339. package/dist/types/core/plugin/index.d.ts +11 -0
  340. package/dist/types/core/plugin/index.d.ts.map +1 -0
  341. package/dist/types/core/query-string/gracefulDecodeURIComponent.d.ts +9 -0
  342. package/dist/types/core/query-string/gracefulDecodeURIComponent.d.ts.map +1 -0
  343. package/dist/types/core/query-string/index.d.ts +7 -0
  344. package/dist/types/core/query-string/index.d.ts.map +1 -0
  345. package/dist/types/core/query-string/pickPrefix.d.ts +9 -0
  346. package/dist/types/core/query-string/pickPrefix.d.ts.map +1 -0
  347. package/dist/types/core/queue/event-queue.d.ts +8 -0
  348. package/dist/types/core/queue/event-queue.d.ts.map +1 -0
  349. package/dist/types/core/stats/index.d.ts +7 -0
  350. package/dist/types/core/stats/index.d.ts.map +1 -0
  351. package/dist/types/core/stats/remote-metrics.d.ts +29 -0
  352. package/dist/types/core/stats/remote-metrics.d.ts.map +1 -0
  353. package/dist/types/core/user/index.d.ts +128 -0
  354. package/dist/types/core/user/index.d.ts.map +1 -0
  355. package/dist/types/core/user/tld.d.ts +2 -0
  356. package/dist/types/core/user/tld.d.ts.map +1 -0
  357. package/dist/types/generated/version.d.ts +2 -0
  358. package/dist/types/generated/version.d.ts.map +1 -0
  359. package/dist/types/index.d.ts +11 -0
  360. package/dist/types/index.d.ts.map +1 -0
  361. package/dist/types/lib/bind-all.d.ts +4 -0
  362. package/dist/types/lib/bind-all.d.ts.map +1 -0
  363. package/dist/types/lib/browser-polyfill.d.ts +2 -0
  364. package/dist/types/lib/browser-polyfill.d.ts.map +1 -0
  365. package/dist/types/lib/create-deferred.d.ts +9 -0
  366. package/dist/types/lib/create-deferred.d.ts.map +1 -0
  367. package/dist/types/lib/csp-detection.d.ts +4 -0
  368. package/dist/types/lib/csp-detection.d.ts.map +1 -0
  369. package/dist/types/lib/embedded-write-key.d.ts +7 -0
  370. package/dist/types/lib/embedded-write-key.d.ts.map +1 -0
  371. package/dist/types/lib/fetch.d.ts +5 -0
  372. package/dist/types/lib/fetch.d.ts.map +1 -0
  373. package/dist/types/lib/get-global.d.ts +2 -0
  374. package/dist/types/lib/get-global.d.ts.map +1 -0
  375. package/dist/types/lib/get-process-env.d.ts +8 -0
  376. package/dist/types/lib/get-process-env.d.ts.map +1 -0
  377. package/dist/types/lib/global-analytics-helper.d.ts +18 -0
  378. package/dist/types/lib/global-analytics-helper.d.ts.map +1 -0
  379. package/dist/types/lib/group-by.d.ts +4 -0
  380. package/dist/types/lib/group-by.d.ts.map +1 -0
  381. package/dist/types/lib/is-plan-event-enabled.d.ts +9 -0
  382. package/dist/types/lib/is-plan-event-enabled.d.ts.map +1 -0
  383. package/dist/types/lib/is-thenable.d.ts +6 -0
  384. package/dist/types/lib/is-thenable.d.ts.map +1 -0
  385. package/dist/types/lib/load-script.d.ts +3 -0
  386. package/dist/types/lib/load-script.d.ts.map +1 -0
  387. package/dist/types/lib/merged-options.d.ts +13 -0
  388. package/dist/types/lib/merged-options.d.ts.map +1 -0
  389. package/dist/types/lib/on-page-leave.d.ts +11 -0
  390. package/dist/types/lib/on-page-leave.d.ts.map +1 -0
  391. package/dist/types/lib/p-while.d.ts +2 -0
  392. package/dist/types/lib/p-while.d.ts.map +1 -0
  393. package/dist/types/lib/parse-cdn.d.ts +10 -0
  394. package/dist/types/lib/parse-cdn.d.ts.map +1 -0
  395. package/dist/types/lib/priority-queue/backoff.d.ts +13 -0
  396. package/dist/types/lib/priority-queue/backoff.d.ts.map +1 -0
  397. package/dist/types/lib/priority-queue/index.d.ts +3 -0
  398. package/dist/types/lib/priority-queue/index.d.ts.map +1 -0
  399. package/dist/types/lib/priority-queue/persisted.d.ts +6 -0
  400. package/dist/types/lib/priority-queue/persisted.d.ts.map +1 -0
  401. package/dist/types/lib/sleep.d.ts +2 -0
  402. package/dist/types/lib/sleep.d.ts.map +1 -0
  403. package/dist/types/lib/to-facade.d.ts +7 -0
  404. package/dist/types/lib/to-facade.d.ts.map +1 -0
  405. package/dist/types/node/index.d.ts +8 -0
  406. package/dist/types/node/index.d.ts.map +1 -0
  407. package/dist/types/node/node.browser.d.ts +4 -0
  408. package/dist/types/node/node.browser.d.ts.map +1 -0
  409. package/dist/types/plugins/ajs-destination/index.d.ts +42 -0
  410. package/dist/types/plugins/ajs-destination/index.d.ts.map +1 -0
  411. package/dist/types/plugins/ajs-destination/loader.d.ts +12 -0
  412. package/dist/types/plugins/ajs-destination/loader.d.ts.map +1 -0
  413. package/dist/types/plugins/ajs-destination/types.d.ts +36 -0
  414. package/dist/types/plugins/ajs-destination/types.d.ts.map +1 -0
  415. package/dist/types/plugins/ajs-destination/utils.d.ts +5 -0
  416. package/dist/types/plugins/ajs-destination/utils.d.ts.map +1 -0
  417. package/dist/types/plugins/analytics-node/index.d.ts +12 -0
  418. package/dist/types/plugins/analytics-node/index.d.ts.map +1 -0
  419. package/dist/types/plugins/customerio/batched-dispatcher.d.ts +8 -0
  420. package/dist/types/plugins/customerio/batched-dispatcher.d.ts.map +1 -0
  421. package/dist/types/plugins/customerio/fetch-dispatcher.d.ts +8 -0
  422. package/dist/types/plugins/customerio/fetch-dispatcher.d.ts.map +1 -0
  423. package/dist/types/plugins/customerio/index.d.ts +26 -0
  424. package/dist/types/plugins/customerio/index.d.ts.map +1 -0
  425. package/dist/types/plugins/customerio/normalize.d.ts +12 -0
  426. package/dist/types/plugins/customerio/normalize.d.ts.map +1 -0
  427. package/dist/types/plugins/customerio/schedule-flush.d.ts +5 -0
  428. package/dist/types/plugins/customerio/schedule-flush.d.ts.map +1 -0
  429. package/dist/types/plugins/in-app-plugin/events.d.ts +19 -0
  430. package/dist/types/plugins/in-app-plugin/events.d.ts.map +1 -0
  431. package/dist/types/plugins/in-app-plugin/index.d.ts +12 -0
  432. package/dist/types/plugins/in-app-plugin/index.d.ts.map +1 -0
  433. package/dist/types/plugins/legacy-video-plugins/index.d.ts +3 -0
  434. package/dist/types/plugins/legacy-video-plugins/index.d.ts.map +1 -0
  435. package/dist/types/plugins/middleware/index.d.ts +18 -0
  436. package/dist/types/plugins/middleware/index.d.ts.map +1 -0
  437. package/dist/types/plugins/page-enrichment/index.d.ts +21 -0
  438. package/dist/types/plugins/page-enrichment/index.d.ts.map +1 -0
  439. package/dist/types/plugins/remote-loader/index.d.ts +43 -0
  440. package/dist/types/plugins/remote-loader/index.d.ts.map +1 -0
  441. package/dist/types/plugins/remote-middleware/index.d.ts +5 -0
  442. package/dist/types/plugins/remote-middleware/index.d.ts.map +1 -0
  443. package/dist/types/plugins/routing-middleware/index.d.ts +13 -0
  444. package/dist/types/plugins/routing-middleware/index.d.ts.map +1 -0
  445. package/dist/types/plugins/schema-filter/index.d.ts +5 -0
  446. package/dist/types/plugins/schema-filter/index.d.ts.map +1 -0
  447. package/dist/types/plugins/validation/index.d.ts +7 -0
  448. package/dist/types/plugins/validation/index.d.ts.map +1 -0
  449. package/dist/types/vendor/tsub/tsub.d.ts +1 -0
  450. package/dist/types/vendor/tsub/tsub.d.ts.map +1 -0
  451. package/dist/types/vendor/tsub/types.d.ts +20 -0
  452. package/dist/types/vendor/tsub/types.d.ts.map +1 -0
  453. package/dist/umd/407.js +1 -0
  454. package/dist/umd/407.js.gz +0 -0
  455. package/dist/umd/852.js +1 -0
  456. package/dist/umd/852.js.gz +0 -0
  457. package/dist/umd/ajs-destination.js +1 -0
  458. package/dist/umd/ajs-destination.js.gz +0 -0
  459. package/dist/umd/auto-track.js +1 -0
  460. package/dist/umd/auto-track.js.gz +0 -0
  461. package/dist/umd/inAppPlugin.js +1 -0
  462. package/dist/umd/inAppPlugin.js.gz +0 -0
  463. package/dist/umd/index.js +1 -0
  464. package/dist/umd/index.js.gz +0 -0
  465. package/dist/umd/legacyVideos.js +1 -0
  466. package/dist/umd/legacyVideos.js.gz +0 -0
  467. package/dist/umd/queryString.js +1 -0
  468. package/dist/umd/queryString.js.gz +0 -0
  469. package/dist/umd/remoteMiddleware.js +1 -0
  470. package/dist/umd/remoteMiddleware.js.gz +0 -0
  471. package/dist/umd/schemaFilter.js +1 -0
  472. package/dist/umd/schemaFilter.js.gz +0 -0
  473. package/dist/umd/standalone.js +1 -0
  474. package/dist/umd/standalone.js.gz +0 -0
  475. package/dist/umd/tsub-middleware.js +1 -0
  476. package/dist/umd/tsub-middleware.js.gz +0 -0
  477. package/package.json +106 -0
  478. package/src/browser/browser-umd.ts +19 -0
  479. package/src/browser/index.ts +423 -0
  480. package/src/browser/standalone-analytics.ts +62 -0
  481. package/src/browser/standalone-interface.ts +11 -0
  482. package/src/browser/standalone.ts +90 -0
  483. package/src/core/analytics/index.ts +573 -0
  484. package/src/core/analytics/interfaces.ts +100 -0
  485. package/src/core/arguments-resolver/index.ts +166 -0
  486. package/src/core/auto-track.ts +152 -0
  487. package/src/core/buffer/index.ts +289 -0
  488. package/src/core/buffer/snippet.ts +46 -0
  489. package/src/core/callback/index.ts +1 -0
  490. package/src/core/connection/index.ts +13 -0
  491. package/src/core/context/index.ts +21 -0
  492. package/src/core/environment/index.ts +7 -0
  493. package/src/core/events/index.ts +254 -0
  494. package/src/core/events/interfaces.ts +36 -0
  495. package/src/core/inspector/index.ts +14 -0
  496. package/src/core/plugin/index.ts +12 -0
  497. package/src/core/query-string/gracefulDecodeURIComponent.ts +16 -0
  498. package/src/core/query-string/index.ts +64 -0
  499. package/src/core/query-string/pickPrefix.ts +20 -0
  500. package/src/core/queue/event-queue.ts +11 -0
  501. package/src/core/stats/index.ts +15 -0
  502. package/src/core/stats/remote-metrics.ts +137 -0
  503. package/src/core/user/index.ts +534 -0
  504. package/src/core/user/tld.ts +65 -0
  505. package/src/generated/version.ts +2 -0
  506. package/src/index.ts +12 -0
  507. package/src/lib/bind-all.ts +19 -0
  508. package/src/lib/browser-polyfill.ts +23 -0
  509. package/src/lib/create-deferred.ts +16 -0
  510. package/src/lib/csp-detection.ts +26 -0
  511. package/src/lib/embedded-write-key.ts +24 -0
  512. package/src/lib/fetch.ts +10 -0
  513. package/src/lib/get-global.ts +16 -0
  514. package/src/lib/get-process-env.ts +11 -0
  515. package/src/lib/global-analytics-helper.ts +31 -0
  516. package/src/lib/group-by.ts +30 -0
  517. package/src/lib/is-plan-event-enabled.ts +20 -0
  518. package/src/lib/is-thenable.ts +9 -0
  519. package/src/lib/load-script.ts +66 -0
  520. package/src/lib/merged-options.ts +46 -0
  521. package/src/lib/on-page-leave.ts +29 -0
  522. package/src/lib/p-while.ts +12 -0
  523. package/src/lib/parse-cdn.ts +93 -0
  524. package/src/lib/priority-queue/backoff.ts +24 -0
  525. package/src/lib/priority-queue/index.ts +6 -0
  526. package/src/lib/priority-queue/persisted.ts +127 -0
  527. package/src/lib/sleep.ts +4 -0
  528. package/src/lib/to-facade.ts +53 -0
  529. package/src/node/index.ts +36 -0
  530. package/src/node/node.browser.ts +7 -0
  531. package/src/plugins/ajs-destination/index.ts +388 -0
  532. package/src/plugins/ajs-destination/loader.ts +127 -0
  533. package/src/plugins/ajs-destination/types.ts +44 -0
  534. package/src/plugins/ajs-destination/utils.ts +34 -0
  535. package/src/plugins/analytics-node/index.ts +64 -0
  536. package/src/plugins/customerio/batched-dispatcher.ts +112 -0
  537. package/src/plugins/customerio/fetch-dispatcher.ts +24 -0
  538. package/src/plugins/customerio/index.ts +143 -0
  539. package/src/plugins/customerio/normalize.ts +223 -0
  540. package/src/plugins/customerio/schedule-flush.ts +58 -0
  541. package/src/plugins/in-app-plugin/events.ts +38 -0
  542. package/src/plugins/in-app-plugin/index.ts +241 -0
  543. package/src/plugins/legacy-video-plugins/index.ts +16 -0
  544. package/src/plugins/middleware/index.ts +131 -0
  545. package/src/plugins/page-enrichment/index.ts +127 -0
  546. package/src/plugins/remote-loader/index.ts +240 -0
  547. package/src/plugins/remote-middleware/index.ts +44 -0
  548. package/src/plugins/routing-middleware/index.ts +38 -0
  549. package/src/plugins/schema-filter/index.ts +90 -0
  550. package/src/plugins/validation/index.ts +80 -0
  551. package/src/test-helpers/browser-storage.ts +72 -0
  552. package/src/test-helpers/factories.ts +18 -0
  553. package/src/test-helpers/fetch-parse.ts +8 -0
  554. package/src/test-helpers/fixtures/cdn-settings.ts +299 -0
  555. package/src/test-helpers/fixtures/classic-destination.ts +25 -0
  556. package/src/test-helpers/fixtures/create-fetch-method.ts +24 -0
  557. package/src/test-helpers/test-writekeys.ts +5 -0
  558. package/src/test-helpers/type-assertions.ts +11 -0
  559. package/src/vendor/tsub/tsub.js.LICENSE.txt +53 -0
  560. package/src/vendor/tsub/tsub.ts +7 -0
  561. package/src/vendor/tsub/types.ts +19 -0
@@ -0,0 +1,645 @@
1
+ "use strict";
2
+ // @ts-nocheck
3
+ // prettier-ignore
4
+ /* eslint-disable */
5
+ // @segment/tsub 2.0.0 - GENERATED DO NOT MODIFY
6
+ /*! For license information please see tsub.js.LICENSE.txt */
7
+ !function (t, r) { if ("object" == typeof exports && "object" == typeof module)
8
+ module.exports = r();
9
+ else if ("function" == typeof define && define.amd)
10
+ define([], r);
11
+ else {
12
+ var e = r();
13
+ for (var n in e)
14
+ ("object" == typeof exports ? exports : t)[n] = e[n];
15
+ } }(self, (function () { return (function () { var t = { 2870: function (t, r, e) {
16
+ "use strict";
17
+ var n = this && this.__importDefault || function (t) { return t && t.__esModule ? t : { default: t }; };
18
+ Object.defineProperty(r, "__esModule", { value: !0 }), r.Store = r.matches = r.transform = void 0;
19
+ var o = e(4303);
20
+ Object.defineProperty(r, "transform", { enumerable: !0, get: function () { return n(o).default; } });
21
+ var s = e(2370);
22
+ Object.defineProperty(r, "matches", { enumerable: !0, get: function () { return n(s).default; } });
23
+ var i = e(1444);
24
+ Object.defineProperty(r, "Store", { enumerable: !0, get: function () { return n(i).default; } });
25
+ }, 2370: function (t, r, e) {
26
+ "use strict";
27
+ var n = this && this.__importDefault || function (t) { return t && t.__esModule ? t : { default: t }; };
28
+ Object.defineProperty(r, "__esModule", { value: !0 });
29
+ var o = n(e(7843));
30
+ function s(t, r) { if (!Array.isArray(t))
31
+ return !0 === i(t, r); var e, n, o, f, p = t[0]; switch (p) {
32
+ case "!": return !s(t[1], r);
33
+ case "or":
34
+ for (var l = 1; l < t.length; l++)
35
+ if (s(t[l], r))
36
+ return !0;
37
+ return !1;
38
+ case "and":
39
+ for (l = 1; l < t.length; l++)
40
+ if (!s(t[l], r))
41
+ return !1;
42
+ return !0;
43
+ case "=":
44
+ case "!=": return function (t, r, e, n) { switch (u(t) && (t = s(t, n)), u(r) && (r = s(r, n)), "object" == typeof t && "object" == typeof r && (t = JSON.stringify(t), r = JSON.stringify(r)), e) {
45
+ case "=": return t === r;
46
+ case "!=": return t !== r;
47
+ default: throw new Error("Invalid operator in compareItems: ".concat(e));
48
+ } }(i(t[1], r), i(t[2], r), p, r);
49
+ case "<=":
50
+ case "<":
51
+ case ">":
52
+ case ">=": return function (t, r, e, n) { if (u(t) && (t = s(t, n)), u(r) && (r = s(r, n)), "number" != typeof t || "number" != typeof r)
53
+ return !1; switch (e) {
54
+ case "<=": return t <= r;
55
+ case ">=": return t >= r;
56
+ case "<": return t < r;
57
+ case ">": return t > r;
58
+ default: throw new Error("Invalid operator in compareNumbers: ".concat(e));
59
+ } }(i(t[1], r), i(t[2], r), p, r);
60
+ case "in": return function (t, r, e) { return void 0 !== r.find((function (r) { return i(r, e) === t; })); }(i(t[1], r), i(t[2], r), r);
61
+ case "contains": return o = i(t[1], r), f = i(t[2], r), "string" == typeof o && "string" == typeof f && -1 !== o.indexOf(f);
62
+ case "match": return e = i(t[1], r), n = i(t[2], r), "string" == typeof e && "string" == typeof n && function (t, r) { var e, n; t: for (; t.length > 0;) {
63
+ var o, s;
64
+ if (o = (e = a(t)).star, s = e.chunk, t = e.pattern, o && "" === s)
65
+ return !0;
66
+ var i = c(s, r), u = i.t, f = i.ok, p = i.err;
67
+ if (p)
68
+ return !1;
69
+ if (!f || !(0 === u.length || t.length > 0)) {
70
+ if (o)
71
+ for (var l = 0; l < r.length; l++) {
72
+ if (u = (n = c(s, r.slice(l + 1))).t, f = n.ok, p = n.err, f) {
73
+ if (0 === t.length && u.length > 0)
74
+ continue;
75
+ r = u;
76
+ continue t;
77
+ }
78
+ if (p)
79
+ return !1;
80
+ }
81
+ return !1;
82
+ }
83
+ r = u;
84
+ } return 0 === r.length; }(n, e);
85
+ case "lowercase":
86
+ var v = i(t[1], r);
87
+ return "string" != typeof v ? null : v.toLowerCase();
88
+ case "typeof": return typeof i(t[1], r);
89
+ case "length": return function (t) { return null === t ? 0 : Array.isArray(t) || "string" == typeof t ? t.length : NaN; }(i(t[1], r));
90
+ default: throw new Error("FQL IR could not evaluate for token: ".concat(p));
91
+ } }
92
+ function i(t, r) { return Array.isArray(t) ? t : "object" == typeof t ? t.value : (0, o.default)(r, t); }
93
+ function u(t) { return !!Array.isArray(t) && (("lowercase" === t[0] || "length" === t[0] || "typeof" === t[0]) && 2 === t.length || ("contains" === t[0] || "match" === t[0]) && 3 === t.length); }
94
+ function a(t) { for (var r = { star: !1, chunk: "", pattern: "" }; t.length > 0 && "*" === t[0];)
95
+ t = t.slice(1), r.star = !0; var e, n = !1; t: for (e = 0; e < t.length; e++)
96
+ switch (t[e]) {
97
+ case "\\":
98
+ e + 1 < t.length && e++;
99
+ break;
100
+ case "[":
101
+ n = !0;
102
+ break;
103
+ case "]":
104
+ n = !1;
105
+ break;
106
+ case "*": if (!n)
107
+ break t;
108
+ } return r.chunk = t.slice(0, e), r.pattern = t.slice(e), r; }
109
+ function c(t, r) { for (var e, n, o = { t: "", ok: !1, err: !1 }; t.length > 0;) {
110
+ if (0 === r.length)
111
+ return o;
112
+ switch (t[0]) {
113
+ case "[":
114
+ var s = r[0];
115
+ r = r.slice(1);
116
+ var i = !0;
117
+ (t = t.slice(1)).length > 0 && "^" === t[0] && (i = !1, t = t.slice(1));
118
+ for (var u = !1, a = 0;;) {
119
+ if (t.length > 0 && "]" === t[0] && a > 0) {
120
+ t = t.slice(1);
121
+ break;
122
+ }
123
+ var c, p = "";
124
+ if (c = (e = f(t)).char, t = e.newChunk, e.err)
125
+ return o;
126
+ if (p = c, "-" === t[0] && (p = (n = f(t.slice(1))).char, t = n.newChunk, n.err))
127
+ return o;
128
+ c <= s && s <= p && (u = !0), a++;
129
+ }
130
+ if (u !== i)
131
+ return o;
132
+ break;
133
+ case "?":
134
+ r = r.slice(1), t = t.slice(1);
135
+ break;
136
+ case "\\": if (0 === (t = t.slice(1)).length)
137
+ return o.err = !0, o;
138
+ default:
139
+ if (t[0] !== r[0])
140
+ return o;
141
+ r = r.slice(1), t = t.slice(1);
142
+ }
143
+ } return o.t = r, o.ok = !0, o.err = !1, o; }
144
+ function f(t) { var r = { char: "", newChunk: "", err: !1 }; return 0 === t.length || "-" === t[0] || "]" === t[0] || "\\" === t[0] && 0 === (t = t.slice(1)).length ? (r.err = !0, r) : (r.char = t[0], r.newChunk = t.slice(1), 0 === r.newChunk.length && (r.err = !0), r); }
145
+ r.default = function (t, r) { if (!r)
146
+ throw new Error("No matcher supplied!"); switch (r.type) {
147
+ case "all": return !0;
148
+ case "fql": return function (t, r) { if (!t)
149
+ return !1; try {
150
+ t = JSON.parse(t);
151
+ }
152
+ catch (r) {
153
+ throw new Error('Failed to JSON.parse FQL intermediate representation "'.concat(t, '": ').concat(r));
154
+ } var e = s(t, r); return "boolean" == typeof e && e; }(r.ir, t);
155
+ default: throw new Error("Matcher of type ".concat(r.type, " unsupported."));
156
+ } };
157
+ }, 1444: function (t, r) {
158
+ "use strict";
159
+ Object.defineProperty(r, "__esModule", { value: !0 });
160
+ var e = function () { function t(t) { this.rules = [], this.rules = t || []; } return t.prototype.getRulesByDestinationName = function (t) { for (var r = [], e = 0, n = this.rules; e < n.length; e++) {
161
+ var o = n[e];
162
+ o.destinationName !== t && void 0 !== o.destinationName || r.push(o);
163
+ } return r; }, t; }();
164
+ r.default = e;
165
+ }, 4303: function (t, r, e) {
166
+ "use strict";
167
+ var n = this && this.__importDefault || function (t) { return t && t.__esModule ? t : { default: t }; };
168
+ Object.defineProperty(r, "__esModule", { value: !0 });
169
+ var o = n(e(2263)), s = n(e(7843)), i = n(e(5500)), u = e(2341), a = e(4966);
170
+ function c(t, r) { p(t, r.drop, (function (t, r) { r.forEach((function (r) { return delete t[r]; })); })); }
171
+ function f(t, r) { p(t, r.allow, (function (t, r) { Object.keys(t).forEach((function (e) { r.includes(e) || delete t[e]; })); })); }
172
+ function p(t, r, e) { Object.entries(r).forEach((function (r) { var n = r[0], o = r[1], i = function (t) { "object" == typeof t && null !== t && e(t, o); }, u = "" === n ? t : (0, s.default)(t, n); Array.isArray(u) ? u.forEach(i) : i(u); })); }
173
+ function l(t, r) { var e = JSON.parse(JSON.stringify(t)); for (var n in r.map)
174
+ if (r.map.hasOwnProperty(n)) {
175
+ var o = r.map[n], i = n.split("."), c = void 0;
176
+ if (i.length > 1 ? (i.pop(), c = (0, s.default)(e, i.join("."))) : c = t, "object" == typeof c) {
177
+ if (o.copy) {
178
+ var f = (0, s.default)(e, o.copy);
179
+ void 0 !== f && (0, u.dset)(t, n, f);
180
+ }
181
+ else if (o.move) {
182
+ var p = (0, s.default)(e, o.move);
183
+ void 0 !== p && (0, u.dset)(t, n, p), (0, a.unset)(t, o.move);
184
+ }
185
+ else
186
+ o.hasOwnProperty("set") && (0, u.dset)(t, n, o.set);
187
+ if (o.to_string) {
188
+ var l = (0, s.default)(t, n);
189
+ if ("string" == typeof l || "object" == typeof l && null !== l)
190
+ continue;
191
+ void 0 !== l ? (0, u.dset)(t, n, JSON.stringify(l)) : (0, u.dset)(t, n, "undefined");
192
+ }
193
+ }
194
+ } }
195
+ function v(t, r) { return !(r.sample.percent <= 0) && (r.sample.percent >= 1 || (r.sample.path ? function (t, r) { var e = (0, s.default)(t, r.sample.path), n = (0, o.default)(JSON.stringify(e)), u = -64, a = []; y(n.slice(0, 8), a); for (var c = 0, f = 0; f < 64 && 1 !== a[f]; f++)
196
+ c++; if (0 !== c) {
197
+ var p = [];
198
+ y(n.slice(9, 16), p), u -= c, a.splice(0, c), p.splice(64 - c), a = a.concat(p);
199
+ } return a[63] = 0 === a[63] ? 1 : 0, (0, i.default)(parseInt(a.join(""), 2), u) < r.sample.percent; }(t, r) : (e = r.sample.percent, Math.random() <= e))); var e; }
200
+ function y(t, r) { for (var e = 0; e < 8; e++)
201
+ for (var n = t[e], o = 128; o >= 1; o /= 2)
202
+ n - o >= 0 ? (n -= o, r.push(1)) : r.push(0); }
203
+ r.default = function (t, r) { for (var e = t, n = 0, o = r; n < o.length; n++) {
204
+ var s = o[n];
205
+ switch (s.type) {
206
+ case "drop": return null;
207
+ case "drop_properties":
208
+ c(e, s.config);
209
+ break;
210
+ case "allow_properties":
211
+ f(e, s.config);
212
+ break;
213
+ case "sample_event":
214
+ if (v(e, s.config))
215
+ break;
216
+ return null;
217
+ case "map_properties":
218
+ l(e, s.config);
219
+ break;
220
+ case "hash_properties": break;
221
+ default: throw new Error('Transformer of type "'.concat(s.type, '" is unsupported.'));
222
+ }
223
+ } return e; };
224
+ }, 4966: function (t, r, e) {
225
+ "use strict";
226
+ var n = this && this.__importDefault || function (t) { return t && t.__esModule ? t : { default: t }; };
227
+ Object.defineProperty(r, "__esModule", { value: !0 }), r.unset = void 0;
228
+ var o = n(e(7843));
229
+ r.unset = function (t, r) { if ((0, o.default)(t, r)) {
230
+ for (var e = r.split("."), n = e.pop(); e.length && "\\" === e[e.length - 1].slice(-1);)
231
+ n = e.pop().slice(0, -1) + "." + n;
232
+ for (; e.length;)
233
+ t = t[r = e.shift()];
234
+ return delete t[n];
235
+ } return !0; };
236
+ }, 3304: function (t) {
237
+ "use strict";
238
+ var r = "function" == typeof Float64Array ? Float64Array : void 0;
239
+ t.exports = r;
240
+ }, 7382: function (t, r, e) {
241
+ "use strict";
242
+ var n, o = e(5569), s = e(3304), i = e(8482);
243
+ n = o() ? s : i, t.exports = n;
244
+ }, 8482: function (t) {
245
+ "use strict";
246
+ t.exports = function () { throw new Error("not implemented"); };
247
+ }, 6322: function (t, r, e) {
248
+ "use strict";
249
+ var n, o = e(2508), s = e(5679), i = e(882);
250
+ n = o() ? s : i, t.exports = n;
251
+ }, 882: function (t) {
252
+ "use strict";
253
+ t.exports = function () { throw new Error("not implemented"); };
254
+ }, 5679: function (t) {
255
+ "use strict";
256
+ var r = "function" == typeof Uint16Array ? Uint16Array : void 0;
257
+ t.exports = r;
258
+ }, 4773: function (t, r, e) {
259
+ "use strict";
260
+ var n, o = e(9773), s = e(3004), i = e(3078);
261
+ n = o() ? s : i, t.exports = n;
262
+ }, 3078: function (t) {
263
+ "use strict";
264
+ t.exports = function () { throw new Error("not implemented"); };
265
+ }, 3004: function (t) {
266
+ "use strict";
267
+ var r = "function" == typeof Uint32Array ? Uint32Array : void 0;
268
+ t.exports = r;
269
+ }, 7980: function (t, r, e) {
270
+ "use strict";
271
+ var n, o = e(8114), s = e(6737), i = e(3357);
272
+ n = o() ? s : i, t.exports = n;
273
+ }, 3357: function (t) {
274
+ "use strict";
275
+ t.exports = function () { throw new Error("not implemented"); };
276
+ }, 6737: function (t) {
277
+ "use strict";
278
+ var r = "function" == typeof Uint8Array ? Uint8Array : void 0;
279
+ t.exports = r;
280
+ }, 2684: function (t) {
281
+ "use strict";
282
+ var r = "function" == typeof Float64Array ? Float64Array : null;
283
+ t.exports = r;
284
+ }, 5569: function (t, r, e) {
285
+ "use strict";
286
+ var n = e(3876);
287
+ t.exports = n;
288
+ }, 3876: function (t, r, e) {
289
+ "use strict";
290
+ var n = e(1448), o = e(2684);
291
+ t.exports = function () { var t, r; if ("function" != typeof o)
292
+ return !1; try {
293
+ r = new o([1, 3.14, -3.14, NaN]), t = n(r) && 1 === r[0] && 3.14 === r[1] && -3.14 === r[2] && r[3] != r[3];
294
+ }
295
+ catch (r) {
296
+ t = !1;
297
+ } return t; };
298
+ }, 9048: function (t, r, e) {
299
+ "use strict";
300
+ var n = e(3763);
301
+ t.exports = n;
302
+ }, 3763: function (t) {
303
+ "use strict";
304
+ var r = Object.prototype.hasOwnProperty;
305
+ t.exports = function (t, e) { return null != t && r.call(t, e); };
306
+ }, 7009: function (t, r, e) {
307
+ "use strict";
308
+ var n = e(6784);
309
+ t.exports = n;
310
+ }, 6784: function (t) {
311
+ "use strict";
312
+ t.exports = function () { return "function" == typeof Symbol && "symbol" == typeof Symbol("foo"); };
313
+ }, 3123: function (t, r, e) {
314
+ "use strict";
315
+ var n = e(8481);
316
+ t.exports = n;
317
+ }, 8481: function (t, r, e) {
318
+ "use strict";
319
+ var n = e(7009)();
320
+ t.exports = function () { return n && "symbol" == typeof Symbol.toStringTag; };
321
+ }, 2508: function (t, r, e) {
322
+ "use strict";
323
+ var n = e(3403);
324
+ t.exports = n;
325
+ }, 3403: function (t, r, e) {
326
+ "use strict";
327
+ var n = e(768), o = e(9668), s = e(187);
328
+ t.exports = function () { var t, r; if ("function" != typeof s)
329
+ return !1; try {
330
+ r = new s(r = [1, 3.14, -3.14, o + 1, o + 2]), t = n(r) && 1 === r[0] && 3 === r[1] && r[2] === o - 2 && 0 === r[3] && 1 === r[4];
331
+ }
332
+ catch (r) {
333
+ t = !1;
334
+ } return t; };
335
+ }, 187: function (t) {
336
+ "use strict";
337
+ var r = "function" == typeof Uint16Array ? Uint16Array : null;
338
+ t.exports = r;
339
+ }, 9773: function (t, r, e) {
340
+ "use strict";
341
+ var n = e(2822);
342
+ t.exports = n;
343
+ }, 2822: function (t, r, e) {
344
+ "use strict";
345
+ var n = e(2744), o = e(3899), s = e(746);
346
+ t.exports = function () { var t, r; if ("function" != typeof s)
347
+ return !1; try {
348
+ r = new s(r = [1, 3.14, -3.14, o + 1, o + 2]), t = n(r) && 1 === r[0] && 3 === r[1] && r[2] === o - 2 && 0 === r[3] && 1 === r[4];
349
+ }
350
+ catch (r) {
351
+ t = !1;
352
+ } return t; };
353
+ }, 746: function (t) {
354
+ "use strict";
355
+ var r = "function" == typeof Uint32Array ? Uint32Array : null;
356
+ t.exports = r;
357
+ }, 8114: function (t, r, e) {
358
+ "use strict";
359
+ var n = e(8066);
360
+ t.exports = n;
361
+ }, 8066: function (t, r, e) {
362
+ "use strict";
363
+ var n = e(8279), o = e(3443), s = e(2731);
364
+ t.exports = function () { var t, r; if ("function" != typeof s)
365
+ return !1; try {
366
+ r = new s(r = [1, 3.14, -3.14, o + 1, o + 2]), t = n(r) && 1 === r[0] && 3 === r[1] && r[2] === o - 2 && 0 === r[3] && 1 === r[4];
367
+ }
368
+ catch (r) {
369
+ t = !1;
370
+ } return t; };
371
+ }, 2731: function (t) {
372
+ "use strict";
373
+ var r = "function" == typeof Uint8Array ? Uint8Array : null;
374
+ t.exports = r;
375
+ }, 1448: function (t, r, e) {
376
+ "use strict";
377
+ var n = e(1453);
378
+ t.exports = n;
379
+ }, 1453: function (t, r, e) {
380
+ "use strict";
381
+ var n = e(6208), o = "function" == typeof Float64Array;
382
+ t.exports = function (t) { return o && t instanceof Float64Array || "[object Float64Array]" === n(t); };
383
+ }, 9331: function (t, r, e) {
384
+ "use strict";
385
+ var n = e(7980), o = { uint16: e(6322), uint8: n };
386
+ t.exports = o;
387
+ }, 5902: function (t, r, e) {
388
+ "use strict";
389
+ var n = e(4106);
390
+ t.exports = n;
391
+ }, 4106: function (t, r, e) {
392
+ "use strict";
393
+ var n, o, s = e(9331);
394
+ (o = new s.uint16(1))[0] = 4660, n = 52 === new s.uint8(o.buffer)[0], t.exports = n;
395
+ }, 768: function (t, r, e) {
396
+ "use strict";
397
+ var n = e(3823);
398
+ t.exports = n;
399
+ }, 3823: function (t, r, e) {
400
+ "use strict";
401
+ var n = e(6208), o = "function" == typeof Uint16Array;
402
+ t.exports = function (t) { return o && t instanceof Uint16Array || "[object Uint16Array]" === n(t); };
403
+ }, 2744: function (t, r, e) {
404
+ "use strict";
405
+ var n = e(2326);
406
+ t.exports = n;
407
+ }, 2326: function (t, r, e) {
408
+ "use strict";
409
+ var n = e(6208), o = "function" == typeof Uint32Array;
410
+ t.exports = function (t) { return o && t instanceof Uint32Array || "[object Uint32Array]" === n(t); };
411
+ }, 8279: function (t, r, e) {
412
+ "use strict";
413
+ var n = e(208);
414
+ t.exports = n;
415
+ }, 208: function (t, r, e) {
416
+ "use strict";
417
+ var n = e(6208), o = "function" == typeof Uint8Array;
418
+ t.exports = function (t) { return o && t instanceof Uint8Array || "[object Uint8Array]" === n(t); };
419
+ }, 6315: function (t) {
420
+ "use strict";
421
+ t.exports = 1023;
422
+ }, 1686: function (t) {
423
+ "use strict";
424
+ t.exports = 2147483647;
425
+ }, 3105: function (t) {
426
+ "use strict";
427
+ t.exports = 2146435072;
428
+ }, 3449: function (t) {
429
+ "use strict";
430
+ t.exports = 2147483648;
431
+ }, 6988: function (t) {
432
+ "use strict";
433
+ t.exports = -1023;
434
+ }, 9777: function (t) {
435
+ "use strict";
436
+ t.exports = 1023;
437
+ }, 3690: function (t) {
438
+ "use strict";
439
+ t.exports = -1074;
440
+ }, 2918: function (t, r, e) {
441
+ "use strict";
442
+ var n = e(4772).NEGATIVE_INFINITY;
443
+ t.exports = n;
444
+ }, 4165: function (t) {
445
+ "use strict";
446
+ var r = Number.POSITIVE_INFINITY;
447
+ t.exports = r;
448
+ }, 6488: function (t) {
449
+ "use strict";
450
+ t.exports = 22250738585072014e-324;
451
+ }, 9668: function (t) {
452
+ "use strict";
453
+ t.exports = 65535;
454
+ }, 3899: function (t) {
455
+ "use strict";
456
+ t.exports = 4294967295;
457
+ }, 3443: function (t) {
458
+ "use strict";
459
+ t.exports = 255;
460
+ }, 7011: function (t, r, e) {
461
+ "use strict";
462
+ var n = e(812);
463
+ t.exports = n;
464
+ }, 812: function (t, r, e) {
465
+ "use strict";
466
+ var n = e(4165), o = e(2918);
467
+ t.exports = function (t) { return t === n || t === o; };
468
+ }, 1883: function (t, r, e) {
469
+ "use strict";
470
+ var n = e(1797);
471
+ t.exports = n;
472
+ }, 1797: function (t) {
473
+ "use strict";
474
+ t.exports = function (t) { return t != t; };
475
+ }, 513: function (t, r, e) {
476
+ "use strict";
477
+ var n = e(5760);
478
+ t.exports = n;
479
+ }, 5760: function (t) {
480
+ "use strict";
481
+ t.exports = function (t) { return Math.abs(t); };
482
+ }, 5848: function (t, r, e) {
483
+ "use strict";
484
+ var n = e(677);
485
+ t.exports = n;
486
+ }, 677: function (t, r, e) {
487
+ "use strict";
488
+ var n = e(3449), o = e(1686), s = e(7838), i = e(1921), u = e(2490), a = [0, 0];
489
+ t.exports = function (t, r) { var e, c; return s.assign(t, a, 1, 0), e = a[0], e &= o, c = i(r), u(e |= c &= n, a[1]); };
490
+ }, 5500: function (t, r, e) {
491
+ "use strict";
492
+ var n = e(8397);
493
+ t.exports = n;
494
+ }, 8397: function (t, r, e) {
495
+ "use strict";
496
+ var n = e(4165), o = e(2918), s = e(6315), i = e(9777), u = e(6988), a = e(3690), c = e(1883), f = e(7011), p = e(5848), l = e(4948), v = e(8478), y = e(7838), d = e(2490), h = [0, 0], x = [0, 0];
497
+ t.exports = function (t, r) { var e, b; return 0 === t || c(t) || f(t) ? t : (l(h, t), r += h[1], (r += v(t = h[0])) < a ? p(0, t) : r > i ? t < 0 ? o : n : (r <= u ? (r += 52, b = 2220446049250313e-31) : b = 1, y(x, t), e = x[0], e &= 2148532223, b * d(e |= r + s << 20, x[1]))); };
498
+ }, 4772: function (t, r, e) {
499
+ "use strict";
500
+ var n = e(7548);
501
+ t.exports = n;
502
+ }, 7548: function (t) {
503
+ "use strict";
504
+ t.exports = Number;
505
+ }, 8478: function (t, r, e) {
506
+ "use strict";
507
+ var n = e(4500);
508
+ t.exports = n;
509
+ }, 4500: function (t, r, e) {
510
+ "use strict";
511
+ var n = e(1921), o = e(3105), s = e(6315);
512
+ t.exports = function (t) { var r = n(t); return (r = (r & o) >>> 20) - s | 0; };
513
+ }, 2490: function (t, r, e) {
514
+ "use strict";
515
+ var n = e(9639);
516
+ t.exports = n;
517
+ }, 4445: function (t, r, e) {
518
+ "use strict";
519
+ var n, o, s;
520
+ !0 === e(5902) ? (o = 1, s = 0) : (o = 0, s = 1), n = { HIGH: o, LOW: s }, t.exports = n;
521
+ }, 9639: function (t, r, e) {
522
+ "use strict";
523
+ var n = e(4773), o = e(7382), s = e(4445), i = new o(1), u = new n(i.buffer), a = s.HIGH, c = s.LOW;
524
+ t.exports = function (t, r) { return u[a] = t, u[c] = r, i[0]; };
525
+ }, 5646: function (t, r, e) {
526
+ "use strict";
527
+ var n;
528
+ n = !0 === e(5902) ? 1 : 0, t.exports = n;
529
+ }, 1921: function (t, r, e) {
530
+ "use strict";
531
+ var n = e(6285);
532
+ t.exports = n;
533
+ }, 6285: function (t, r, e) {
534
+ "use strict";
535
+ var n = e(4773), o = e(7382), s = e(5646), i = new o(1), u = new n(i.buffer);
536
+ t.exports = function (t) { return i[0] = t, u[s]; };
537
+ }, 9024: function (t, r, e) {
538
+ "use strict";
539
+ var n = e(6488), o = e(7011), s = e(1883), i = e(513);
540
+ t.exports = function (t, r, e, u) { return s(t) || o(t) ? (r[u] = t, r[u + e] = 0, r) : 0 !== t && i(t) < n ? (r[u] = 4503599627370496 * t, r[u + e] = -52, r) : (r[u] = t, r[u + e] = 0, r); };
541
+ }, 4948: function (t, r, e) {
542
+ "use strict";
543
+ var n = e(7576), o = e(9422);
544
+ n(o, "assign", e(9024)), t.exports = o;
545
+ }, 9422: function (t, r, e) {
546
+ "use strict";
547
+ var n = e(9024);
548
+ t.exports = function (t) { return n(t, [0, 0], 1, 0); };
549
+ }, 7838: function (t, r, e) {
550
+ "use strict";
551
+ var n = e(4010);
552
+ t.exports = n;
553
+ }, 5782: function (t, r, e) {
554
+ "use strict";
555
+ var n, o, s;
556
+ !0 === e(5902) ? (o = 1, s = 0) : (o = 0, s = 1), n = { HIGH: o, LOW: s }, t.exports = n;
557
+ }, 4010: function (t, r, e) {
558
+ "use strict";
559
+ var n = e(4903);
560
+ t.exports = function (t, r) { return 1 === arguments.length ? n([0, 0], t) : n(t, r); };
561
+ }, 4903: function (t, r, e) {
562
+ "use strict";
563
+ var n = e(4773), o = e(7382), s = e(5782), i = new o(1), u = new n(i.buffer), a = s.HIGH, c = s.LOW;
564
+ t.exports = function (t, r) { return i[0] = r, t[0] = u[a], t[1] = u[c], t; };
565
+ }, 7576: function (t, r, e) {
566
+ "use strict";
567
+ var n = e(7063);
568
+ t.exports = n;
569
+ }, 7063: function (t, r, e) {
570
+ "use strict";
571
+ var n = e(6691);
572
+ t.exports = function (t, r, e) { n(t, r, { configurable: !1, enumerable: !1, writable: !1, value: e }); };
573
+ }, 2073: function (t) {
574
+ "use strict";
575
+ var r = Object.defineProperty;
576
+ t.exports = r;
577
+ }, 1680: function (t) {
578
+ "use strict";
579
+ var r = "function" == typeof Object.defineProperty ? Object.defineProperty : null;
580
+ t.exports = r;
581
+ }, 1471: function (t, r, e) {
582
+ "use strict";
583
+ var n = e(1680);
584
+ t.exports = function () { try {
585
+ return n({}, "x", {}), !0;
586
+ }
587
+ catch (t) {
588
+ return !1;
589
+ } };
590
+ }, 6691: function (t, r, e) {
591
+ "use strict";
592
+ var n, o = e(1471), s = e(2073), i = e(1309);
593
+ n = o() ? s : i, t.exports = n;
594
+ }, 1309: function (t) {
595
+ "use strict";
596
+ var r = Object.prototype, e = r.toString, n = r.__defineGetter__, o = r.__defineSetter__, s = r.__lookupGetter__, i = r.__lookupSetter__;
597
+ t.exports = function (t, u, a) { var c, f, p, l; if ("object" != typeof t || null === t || "[object Array]" === e.call(t))
598
+ throw new TypeError("invalid argument. First argument must be an object. Value: `" + t + "`."); if ("object" != typeof a || null === a || "[object Array]" === e.call(a))
599
+ throw new TypeError("invalid argument. Property descriptor must be an object. Value: `" + a + "`."); if ((f = "value" in a) && (s.call(t, u) || i.call(t, u) ? (c = t.__proto__, t.__proto__ = r, delete t[u], t[u] = a.value, t.__proto__ = c) : t[u] = a.value), p = "get" in a, l = "set" in a, f && (p || l))
600
+ throw new Error("invalid argument. Cannot specify one or more accessors and a value or writable attribute in the property descriptor."); return p && n && n.call(t, u, a.get), l && o && o.call(t, u, a.set), t; };
601
+ }, 6208: function (t, r, e) {
602
+ "use strict";
603
+ var n, o = e(3123), s = e(7407), i = e(4210);
604
+ n = o() ? i : s, t.exports = n;
605
+ }, 7407: function (t, r, e) {
606
+ "use strict";
607
+ var n = e(173);
608
+ t.exports = function (t) { return n.call(t); };
609
+ }, 4210: function (t, r, e) {
610
+ "use strict";
611
+ var n = e(9048), o = e(1403), s = e(173);
612
+ t.exports = function (t) { var r, e, i; if (null == t)
613
+ return s.call(t); e = t[o], r = n(t, o); try {
614
+ t[o] = void 0;
615
+ }
616
+ catch (r) {
617
+ return s.call(t);
618
+ } return i = s.call(t), r ? t[o] = e : delete t[o], i; };
619
+ }, 173: function (t) {
620
+ "use strict";
621
+ var r = Object.prototype.toString;
622
+ t.exports = r;
623
+ }, 1403: function (t) {
624
+ "use strict";
625
+ var r = "function" == typeof Symbol ? Symbol.toStringTag : "";
626
+ t.exports = r;
627
+ }, 7843: function (t) { t.exports = function (t, r, e, n, o) { for (r = r.split ? r.split(".") : r, n = 0; n < r.length; n++)
628
+ t = t ? t[r[n]] : o; return t === o ? e : t; }; }, 2341: function (t, r) { r.dset = function (t, r, e) { r.split && (r = r.split(".")); for (var n, o, s = 0, i = r.length, u = t; s < i && "__proto__" !== (o = r[s++]) && "constructor" !== o && "prototype" !== o;)
629
+ u = u[o] = s === i ? e : typeof (n = u[o]) == typeof r ? n : 0 * r[s] != 0 || ~("" + r[s]).indexOf(".") ? {} : []; }; }, 2263: function (t, r, e) {
630
+ "use strict";
631
+ e.r(r), e.d(r, { default: function () { return s; } });
632
+ for (var n = [], o = 0; o < 64;)
633
+ n[o] = 0 | 4294967296 * Math.sin(++o % Math.PI);
634
+ function s(t) { var r, e, s, i = [r = 1732584193, e = 4023233417, ~r, ~e], u = [], a = unescape(encodeURI(t)) + "€", c = a.length; for (t = --c / 4 + 2 | 15, u[--t] = 8 * c; ~c;)
635
+ u[c >> 2] |= a.charCodeAt(c) << 8 * c--; for (o = a = 0; o < t; o += 16) {
636
+ for (c = i; a < 64; c = [s = c[3], r + ((s = c[0] + [r & e | ~r & s, s & r | ~s & e, r ^ e ^ s, e ^ (r | ~s)][c = a >> 4] + n[a] + ~~u[o | 15 & [a, 5 * a + 1, 3 * a + 5, 7 * a][c]]) << (c = [7, 12, 17, 22, 5, 9, 14, 20, 4, 11, 16, 23, 6, 10, 15, 21][4 * c + a++ % 4]) | s >>> -c), r, e])
637
+ r = 0 | c[1], e = c[2];
638
+ for (a = 4; a;)
639
+ i[--a] += c[a];
640
+ } for (t = ""; a < 32;)
641
+ t += (i[a >> 3] >> 4 * (1 ^ a++) & 15).toString(16); return t; }
642
+ } }, r = {}; function e(n) { var o = r[n]; if (void 0 !== o)
643
+ return o.exports; var s = r[n] = { exports: {} }; return t[n].call(s.exports, s, s.exports, e), s.exports; } return e.d = function (t, r) { for (var n in r)
644
+ e.o(r, n) && !e.o(t, n) && Object.defineProperty(t, n, { enumerable: !0, get: r[n] }); }, e.o = function (t, r) { return Object.prototype.hasOwnProperty.call(t, r); }, e.r = function (t) { "undefined" != typeof Symbol && Symbol.toStringTag && Object.defineProperty(t, Symbol.toStringTag, { value: "Module" }), Object.defineProperty(t, "__esModule", { value: !0 }); }, e(2870); })(); }));
645
+ //# sourceMappingURL=tsub.js.map