加入api.crawlab.cn数据追踪

This commit is contained in:
marvzhang
2020-01-10 14:37:50 +08:00
parent aa5ae87eeb
commit d124c6c96f
8 changed files with 54 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
export default {
UUID: () => {
let s = []
let hexDigits = '0123456789abcdef'
for (let i = 0; i < 36; i++) {
s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1)
}
s[14] = '4' // bits 12-15 of the time_hi_and_version field to 0010
s[8] = s[13] = s[18] = s[23] = '-'
return s.join('')
}
}