We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9a8fbf commit a1aee99Copy full SHA for a1aee99
packages-exp/auth-exp/rollup.config.js
@@ -31,13 +31,13 @@ const commonPlugins = [
31
strip({
32
functions: ['debugAssert.*']
33
})
34
-]
+];
35
36
/**
37
* ES5 Builds
38
*/
39
const es5BuildPlugins = [
40
- ...commonPlugins,
+ ...commonPlugins,
41
typescriptPlugin({
42
typescript
43
packages-exp/auth-exp/src/core/util/delay.ts
@@ -35,7 +35,10 @@ export class Delay {
private readonly longDelay: number
) {
// Internal error when improperly initialized.
- debugAssert(shortDelay > longDelay, 'Short delay should be less than long delay!');
+ debugAssert(
+ shortDelay > longDelay,
+ 'Short delay should be less than long delay!'
+ );
this.isMobile = isMobileCordova() || isReactNative();
}
44
0 commit comments