Skip to content

Commit

Permalink
style: apply prettier style to some files
Browse files Browse the repository at this point in the history
  • Loading branch information
LiosK committed May 11, 2024
1 parent 0b74855 commit 2422a34
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/uuid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export class UUID {
0x4000 | rand(12), // time_hi_and_version
0x80 | rand(6), // clock_seq_hi_and_reserved
rand(8), // clock_seq_low
rand(48) // node
rand(48), // node
);
}

Expand Down Expand Up @@ -158,7 +158,7 @@ export class UUID {
parseInt(r[4], 16),
parseInt(r[5], 16),
parseInt(r[6], 16),
parseInt(r[7], 16)
parseInt(r[7], 16),
);
}
}
Expand Down Expand Up @@ -242,7 +242,7 @@ export class UUID {
_timeHiAndVersion: number,
_clockSeqHiAndReserved: number,
_clockSeqLow: number,
_node: number
_node: number,
) {
var names = UUID.FIELD_NAMES,
sizes = UUID.FIELD_SIZES;
Expand All @@ -265,7 +265,7 @@ export class UUID {
// @ts-ignore
this.hexFields[i] = this.hexFields[names[i]] = hex(
intValue,
sizes[i] >>> 2
sizes[i] >>> 2,
);
}

Expand Down
2 changes: 1 addition & 1 deletion test/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
Expand Down

0 comments on commit 2422a34

Please sign in to comment.