Skip to content

Commit a1aee99

Browse files
committed
[AUTOMATED]: Prettier Code Styling
1 parent f9a8fbf commit a1aee99

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

packages-exp/auth-exp/rollup.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ const commonPlugins = [
3131
strip({
3232
functions: ['debugAssert.*']
3333
})
34-
]
34+
];
3535

3636
/**
3737
* ES5 Builds
3838
*/
3939
const es5BuildPlugins = [
40-
...commonPlugins,
40+
...commonPlugins,
4141
typescriptPlugin({
4242
typescript
4343
})

packages-exp/auth-exp/src/core/util/delay.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ export class Delay {
3535
private readonly longDelay: number
3636
) {
3737
// Internal error when improperly initialized.
38-
debugAssert(shortDelay > longDelay, 'Short delay should be less than long delay!');
38+
debugAssert(
39+
shortDelay > longDelay,
40+
'Short delay should be less than long delay!'
41+
);
3942
this.isMobile = isMobileCordova() || isReactNative();
4043
}
4144

0 commit comments

Comments
 (0)