diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-04-13 14:38:49 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-04-13 14:38:49 -0400 |
commit | c83093bb29c1f6d0e580385d9e7c5eb5f5846ac6 (patch) | |
tree | d9c0772a5a80f4cd5fb581ccb6e6ee5acf71e36b /src/Utils.ts | |
parent | ed9bb54c6307e809c6c6aa40c7d77cd3480e7e73 (diff) |
some clean up
Diffstat (limited to 'src/Utils.ts')
-rw-r--r-- | src/Utils.ts | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/Utils.ts b/src/Utils.ts index ff55a2e4e..c629bc263 100644 --- a/src/Utils.ts +++ b/src/Utils.ts @@ -87,16 +87,12 @@ export class Utils { } } -export function returnTrue() { - return true; -} +export function returnTrue() { return true; } -export function returnFalse() { - return false; -} +export function returnFalse() { return false; } export function emptyFunction() { } -export function emptyDocFunction(doc: Document) { console.log("focus " + doc.Title); } +export function emptyDocFunction(doc: Document) { } export type Without<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
\ No newline at end of file |