Skip to content

Commit f132e9b

Browse files
committed
styleci
1 parent a30b9ec commit f132e9b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/echo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
SocketIoPrivateChannel,
1515
} from './channel';
1616
import { Connector, PusherConnector, SocketIoConnector, NullConnector } from './connector';
17-
import { isConstructor } from "./util";
17+
import { isConstructor } from './util';
1818

1919
/**
2020
* This class is the primary API for interacting with broadcasting.

src/util/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ function isConstructor(obj: any): obj is new (...args: any[]) => any {
77
return true;
88
}
99

10-
export {isConstructor};
10+
export { isConstructor };
1111
export * from './event-formatter';

tests/echo.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Echo from '../src/echo';
2-
import { NullConnector } from "../src/connector";
2+
import { NullConnector } from '../src/connector';
33

44
describe('Echo', () => {
55
test('it will not throw error for supported driver', () => {

0 commit comments

Comments
 (0)