Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/third_party/closure/goog/labs/useragent/highentropy/highentropydata.js
4610 views
1
/**
2
* @license
3
* Copyright The Closure Library Authors.
4
* SPDX-License-Identifier: Apache-2.0
5
*/
6
7
/**
8
* @fileoverview Provides access to high-entropy user agent values.
9
*/
10
11
goog.module('goog.labs.userAgent.highEntropy.highEntropyData');
12
13
const {HighEntropyValue} = goog.require('goog.labs.userAgent.highEntropy.highEntropyValue');
14
15
/**
16
* @type {!HighEntropyValue<!Array<!NavigatorUABrandVersion>|undefined>}
17
*/
18
const fullVersionList = new HighEntropyValue('fullVersionList');
19
exports.fullVersionList = fullVersionList;
20
21
/**
22
* @type {!HighEntropyValue<string>}
23
*/
24
const platformVersion = new HighEntropyValue('platformVersion');
25
exports.platformVersion = platformVersion;
26