diff options
| author | Uri Shaked | 2025-02-11 10:31:57 +0200 |
|---|---|---|
| committer | Uri Shaked | 2025-02-11 10:31:57 +0200 |
| commit | 9ce22e49cf1110d0a8c1943877dc32e6568354cc (patch) | |
| tree | 6ad61569ee9a311b5ca8f330948b2136b2c04ed5 /demo | |
| parent | chore: replace ts-node with tsx (diff) | |
| download | avr8js-9ce22e49cf1110d0a8c1943877dc32e6568354cc.tar.gz avr8js-9ce22e49cf1110d0a8c1943877dc32e6568354cc.tar.bz2 avr8js-9ce22e49cf1110d0a8c1943877dc32e6568354cc.zip | |
chore(deps): upgrade prettier
reformat all code with the new prettier version
Diffstat (limited to 'demo')
| -rw-r--r-- | demo/index.html | 2 | ||||
| -rw-r--r-- | demo/src/cpu-performance.ts | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/demo/index.html b/demo/index.html index 0639147..c5a2068 100644 --- a/demo/index.html +++ b/demo/index.html @@ -1,4 +1,4 @@ -<!DOCTYPE html> +<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> diff --git a/demo/src/cpu-performance.ts b/demo/src/cpu-performance.ts index a4afc73..1b1261e 100644 --- a/demo/src/cpu-performance.ts +++ b/demo/src/cpu-performance.ts @@ -6,7 +6,10 @@ export class CPUPerformance { private samples = new Float32Array(64); private sampleIndex = 0; - constructor(private cpu: CPU, private MHZ: number) {} + constructor( + private cpu: CPU, + private MHZ: number, + ) {} reset() { this.prevTime = 0; |
