summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/compiler.ts4
-rw-r--r--js/url_search_params.ts4
2 files changed, 4 insertions, 4 deletions
diff --git a/js/compiler.ts b/js/compiler.ts
index 9ba018932..c9fa4611c 100644
--- a/js/compiler.ts
+++ b/js/compiler.ts
@@ -180,8 +180,8 @@ export class Compiler
return this._moduleMetaDataMap.has(fileName)
? this._moduleMetaDataMap.get(fileName)
: fileName.startsWith(ASSETS)
- ? this._resolveModule(fileName, "")
- : undefined;
+ ? this._resolveModule(fileName, "")
+ : undefined;
}
/** Given a `moduleSpecifier` and `containingFile` retrieve the cached
diff --git a/js/url_search_params.ts b/js/url_search_params.ts
index cf005fc16..228c36956 100644
--- a/js/url_search_params.ts
+++ b/js/url_search_params.ts
@@ -117,8 +117,8 @@ export class URLSearchParams {
* searchParams.sort();
*/
sort(): void {
- this.params = this.params.sort(
- (a, b) => (a[0] === b[0] ? 0 : a[0] > b[0] ? 1 : -1)
+ this.params = this.params.sort((a, b) =>
+ a[0] === b[0] ? 0 : a[0] > b[0] ? 1 : -1
);
}