feat: Add console app to measure CPU and Memory performance

This commit is contained in:
2025-03-20 10:06:04 +01:00
parent 7734f3c60b
commit 7d4fb4e617
3 changed files with 18 additions and 7 deletions

5
Typescript/console.ts Normal file
View File

@@ -0,0 +1,5 @@
import { levenshteinRatio } from "./levenshteinRatio.ts";
for (let i = 0; i < 1000000; i++) {
console.log(levenshteinRatio('test', 'kitten'));
}