perf.js 196 字节
Newer Older
fxy060608's avatar
init v3  
fxy060608 已提交
1 2 3 4 5
export function perf (type, startTime) {
  /* eslint-disable no-undef */
  startTime = startTime || __UniServiceStartTime__
  console.log(`[PERF] ${type} 耗时[${Date.now() - startTime}]`)
}