-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
third-party-web.js
64 lines (55 loc) · 1.37 KB
/
third-party-web.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import thirdPartyWebLib from 'third-party-web/nostats-subset.js';
let thirdPartyWeb = thirdPartyWebLib;
/**
* For use by DevTools.
*
* @param {typeof import('third-party-web/nostats-subset.js')} providedThirdPartyWeb
*/
function provideThirdPartyWeb(providedThirdPartyWeb) {
thirdPartyWeb = providedThirdPartyWeb;
}
/** @typedef {import("third-party-web").IEntity} ThirdPartyEntity */
/** @typedef {import("third-party-web").IProduct} ThirdPartyProduct */
/**
* @param {string} url
* @return {ThirdPartyEntity|undefined}
*/
function getEntity(url) {
return thirdPartyWeb.getEntity(url);
}
/**
* @param {string} url
* @return {ThirdPartyProduct|undefined}
*/
function getProduct(url) {
return thirdPartyWeb.getProduct(url);
}
/**
* @param {string} url
* @param {ThirdPartyEntity | undefined} mainDocumentEntity
*/
function isThirdParty(url, mainDocumentEntity) {
const entity = getEntity(url);
if (!entity) return false;
if (entity === mainDocumentEntity) return false;
return true;
}
/**
* @param {string} url
* @param {ThirdPartyEntity | undefined} mainDocumentEntity
*/
function isFirstParty(url, mainDocumentEntity) {
return !isThirdParty(url, mainDocumentEntity);
}
export default {
provideThirdPartyWeb,
getEntity,
getProduct,
isThirdParty,
isFirstParty,
};