(buf, offset)
| 416 | } |
| 417 | |
| 418 | function writeTimestamp(buf, offset) { |
| 419 | const now = DateNow(); |
| 420 | const msb = now / (2 ** 32); |
| 421 | buf[offset] = msb >>> 8; |
| 422 | buf[offset + 1] = msb; |
| 423 | buf[offset + 2] = now >>> 24; |
| 424 | buf[offset + 3] = now >>> 16; |
| 425 | buf[offset + 4] = now >>> 8; |
| 426 | buf[offset + 5] = now; |
| 427 | } |
| 428 | |
| 429 | function getBufferedUUIDv7() { |
| 430 | uuidData ??= secureBuffer(16 * kBatchSize); |
no outgoing calls
no test coverage detected
searching dependent graphs…