fixed Spaces

This commit is contained in:
z0ccc 2021-06-11 23:21:45 -04:00
parent 479bfe278a
commit 9d3dae346a

View file

@ -19,7 +19,6 @@ const Table = () => {
const browserEngine = uaResult.engine.name; const browserEngine = uaResult.engine.name;
const os = `${uaResult.os.name} ${uaResult.os.versionName}`; const os = `${uaResult.os.name} ${uaResult.os.versionName}`;
const platform = uaResult.platform.type; const platform = uaResult.platform.type;
const language = navigator.language; const language = navigator.language;
const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone; const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone;
const date = new Date(); const date = new Date();
@ -34,10 +33,10 @@ const Table = () => {
if (i !== 0) pluginList += ', '; if (i !== 0) pluginList += ', ';
pluginList += navigator.plugins[i].name; pluginList += navigator.plugins[i].name;
} }
const plugins = pluginList; const plugins = pluginList;
const screenSize = `${window.screen.width}x${window.screen.height}`; const screenSize = `${window.screen.width}x${window.screen.height}`;
const color = window.screen.colorDepth; const color = window.screen.colorDepth;
const memory = `${navigator.deviceMemory}GB`; const memory = `${navigator.deviceMemory}GB`;
const cores = navigator.hardwareConcurrency; const cores = navigator.hardwareConcurrency;
const maxTouch = navigator.maxTouchPoints; const maxTouch = navigator.maxTouchPoints;