diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2019-08-03 15:21:10 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2019-08-03 15:21:10 -0400 |
| commit | 753615c80d4cf08605ebaaeeaf0a44a0fd88d898 (patch) | |
| tree | 969802c23cb3c9ecba930a3b3d2fab9b896e7d77 /src/Utils.ts | |
| parent | fe9017c3cdc2481f4bcce40dcc1514a6f7af37dc (diff) | |
working version of clustering
Diffstat (limited to 'src/Utils.ts')
| -rw-r--r-- | src/Utils.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Utils.ts b/src/Utils.ts index 8df67df5d..502540eb0 100644 --- a/src/Utils.ts +++ b/src/Utils.ts @@ -140,6 +140,8 @@ export function returnOne() { return 1; } export function returnZero() { return 0; } +export function returnEmptyString() { return ""; } + export function emptyFunction() { } export type Without<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>; |
