Skip to content

Commit

Permalink
draft
Browse files Browse the repository at this point in the history
  • Loading branch information
katydecorah committed Jan 21, 2025
1 parent e9f87ef commit 3877612
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/axe-info.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ let AxeInfo = class AxeInfo {
this.axe = axe;
}
get version() {
info(`!!!!!Axe version: ${this.version}`);
return this.version;
info(`!!!!!Axe version: ${this.axe.version}`);
return this.axe.version;
}
};
AxeInfo = __decorate([
Expand Down
4 changes: 2 additions & 2 deletions src/axe-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export class AxeInfo {
constructor(private readonly axe: typeof Axe = Axe) {}

public get version(): string {
info(`!!!!!Axe version: ${this.version}`);
return this.version;
info(`!!!!!Axe version: ${this.axe.version}`);
return this.axe.version;
}
}

0 comments on commit 3877612

Please sign in to comment.