diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2019-04-12 20:44:43 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2019-04-12 20:44:43 -0400 |
| commit | e3caa89d36c501c16acbc56900546d8a4522584a (patch) | |
| tree | 579c3c65cd3dc01c32b461bdc9199c0fd54df512 /src/Utils.ts | |
| parent | 9c162a938e861509e2e32e7b63409f037e2da284 (diff) | |
fixed lint warnings.
Diffstat (limited to 'src/Utils.ts')
| -rw-r--r-- | src/Utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Utils.ts b/src/Utils.ts index ae194bcc7..ff55a2e4e 100644 --- a/src/Utils.ts +++ b/src/Utils.ts @@ -97,6 +97,6 @@ export function returnFalse() { export function emptyFunction() { } -export function emptyDocFunction(doc: Document) { console.log("focus " + doc.Title) } +export function emptyDocFunction(doc: Document) { console.log("focus " + doc.Title); } export type Without<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
\ No newline at end of file |
