[CI] test committed
This commit is contained in:
parent
b5f830072e
commit
af9af3c112
2
dist/index.js
vendored
2
dist/index.js
vendored
@ -13939,7 +13939,7 @@ for (let i = 0; i < 256; ++i) {
|
|||||||
function unsafeStringify(arr, offset = 0) {
|
function unsafeStringify(arr, offset = 0) {
|
||||||
// Note: Be careful editing this code! It's been tuned for performance
|
// Note: Be careful editing this code! It's been tuned for performance
|
||||||
// and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434
|
// and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434
|
||||||
return (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase();
|
return byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]];
|
||||||
}
|
}
|
||||||
|
|
||||||
function stringify(arr, offset = 0) {
|
function stringify(arr, offset = 0) {
|
||||||
|
|||||||
1
report.txt
Normal file
1
report.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
1695126234
|
||||||
Loading…
x
Reference in New Issue
Block a user