[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
12

Configure Feed

Select the types of activity you want to include in your feed.

chore: tiny typo (#7958)

authored by

@beer and committed by
GitHub
(May 11, 2025, 4:13 PM +0900) f6beb9cf df07611f

+1 -1
+1 -1
examples/profiling/src/prime-number.ts
··· 47 47 48 48 const squareRoot = bigIntSquareRoot(number) 49 49 50 - // Intentionally unefficient to highlight performance issues 50 + // Intentionally inefficient to highlight performance issues 51 51 for (let i = 3n; i < squareRoot; i += 2n) { 52 52 if (number % i === 0n) { 53 53 return false