mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-02-11 06:38:13 -05:00
10 lines
381 B
TypeScript
10 lines
381 B
TypeScript
![]() |
const isDevelopment = process.env.NODE_ENV !== 'production'
|
||
|
/* eslint-disable camelcase */
|
||
|
export const handleBaiduTongJiEvent = (data: IBaiduTongJiOptions) => {
|
||
|
const { category, action, opt_label = '', opt_value = Date.now() } = data
|
||
|
window._hmt.push(['_trackEvent', category, action, opt_label, opt_value])
|
||
|
if (isDevelopment) {
|
||
|
console.log('baidu tongji', data)
|
||
|
}
|
||
|
}
|