Skip to content

Commit fd8e490

Browse files
committed
Fix linting error
1 parent ccb69d7 commit fd8e490

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/common/exceptions/http.exception.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class HttpException extends Error {
3232
}
3333

3434
private getErrorString(target) {
35-
if(typeof target === 'string') {
35+
if (typeof target === 'string') {
3636
return target;
3737
}
3838

packages/microservices/exceptions/rpc-exception.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export class RpcException extends Error {
1010
}
1111

1212
private getErrorString(target) {
13-
if(typeof target === 'string') {
13+
if (typeof target === 'string') {
1414
return target;
1515
}
1616

packages/websockets/errors/ws-exception.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export class WsException extends Error {
1111
}
1212

1313
private getErrorString(target) {
14-
if(typeof target === 'string') {
14+
if (typeof target === 'string') {
1515
return target;
1616
}
1717

0 commit comments

Comments
 (0)