21 lines
699 B
JavaScript
21 lines
699 B
JavaScript
export default {
|
|
version: "8.0.0-alpha.2020.Jan.3",
|
|
copyright:
|
|
"Copyright © 1999-2020, Ground Zero Tech-Works Inc. All Rights Reserved",
|
|
browser: {
|
|
platform: window.navigator.platform,
|
|
userAgent: window.navigator.userAgent,
|
|
language: window.navigator.language,
|
|
oscpu: window.navigator.oscpu,
|
|
maxTouchPoints: window.navigator.maxTouchPoints,
|
|
webdriver: window.navigator.webdriver,
|
|
vendor: window.navigator.vendor,
|
|
availWidth: window.screen.availWidth,
|
|
availHeight: window.screen.availHeight,
|
|
width: window.screen.width,
|
|
height: window.screen.height,
|
|
devicePixelRatio: window.devicePixelRatio,
|
|
pixelDepth: window.screen.pixelDepth
|
|
}
|
|
};
|