UNPKG

monitor-test

Version:

网页性能监控 18 项数据指标,浏览器信息,错误收集上报方案,前端工程化。

21 lines (17 loc) 399 B
import UAParser from 'ua-parser-js' import { getNowTime } from '../../utils/time' import { single } from '../../utils' /** * 共通上报信息 */ export function generalInfo() { const parser = new UAParser() const result = parser.getResult() return { title: document.title, url: location.href, timestamp: Date.now(), date: getNowTime(), ...single('UA', result) } }