Skip to content

Commit

Permalink
chore: adding commas to the code
Browse files Browse the repository at this point in the history
  • Loading branch information
lncitador committed Jul 7, 2024
1 parent 8241223 commit 1b63f9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/signature.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class SignatureEntityBuilder {
const directory = resolve(
__dirname,
filepath,
`${basename}-${Date.now()}`
`${basename}-${Date.now()}`,
);

try {
Expand All @@ -136,7 +136,7 @@ export class SignatureEntity implements ISignatureEntity {

constructor(
public readonly data: Buffer,
public readonly signature: Buffer
public readonly signature: Buffer,
) {
this.#builder = new SignatureEntityBuilder(data, signature);
}
Expand Down

0 comments on commit 1b63f9d

Please sign in to comment.