Remove unnecessary "use strict" directives

This commit is contained in:
hensm
2022-09-02 06:30:19 +01:00
parent d5eb78f881
commit 8ecd3320f7
48 changed files with 0 additions and 97 deletions

View File

@@ -1,5 +1,3 @@
"use strict";
interface TypedEvents {
[key: string]: any;
}

View File

@@ -1,5 +1,3 @@
"use strict";
/**
* Provides a typed interface to MessagePort objects.
*/

View File

@@ -1,5 +1,3 @@
"use strict";
/**
* Provides a typed interface to runtime.Port objects.
*/

View File

@@ -1,5 +1,3 @@
"use strict";
/**
* Allows typed access to a StorageArea.
*

View File

@@ -1,5 +1,3 @@
"use strict";
import semver from "semver";
import logger from "./logger";

View File

@@ -1,5 +1,3 @@
"use strict";
export class Logger {
constructor(private prefix: string) {}

View File

@@ -1,5 +1,3 @@
"use strict";
const WILDCARD_SCHEMES = ["http", "https", "ws", "wss"];
export const REMOTE_MATCH_PATTERN_REGEX =

View File

@@ -1,5 +1,3 @@
"use strict";
import logger from "./logger";
import options from "./options";

View File

@@ -1,5 +1,3 @@
"use strict";
import defaultOptions, { Options } from "../defaultOptions";
export { Options };

View File

@@ -1,5 +1,3 @@
"use strict";
const PLATFORM_MAC = "Macintosh; Intel Mac OS X 12_5";
const PLATFORM_MAC_HYBRID = "Macintosh; Intel Mac OS X 12_5; rv:103.0";
const PLATFORM_WIN = "Windows NT 10.0; Win64; x64";

View File

@@ -1,5 +1,3 @@
"use strict";
import { ReceiverSelectorMediaType } from "../types";
export function getNextEllipsis(ellipsis: string): string {