diff options
author | Matthew Miller <matthew@millerti.me> | 2020-05-25 11:41:23 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-05-25 11:41:23 -0700 |
commit | 8e55856d806dc9acb05a313ee42363950f46d7cd (patch) | |
tree | f48375f5a0337528d97e65e07df1eb74601bfa7b /packages/server/src/helpers/asciiToBinary.ts | |
parent | 90324f77c56be97776fab6742178e800a5187c22 (diff) |
Run ESLint over everything
Diffstat (limited to 'packages/server/src/helpers/asciiToBinary.ts')
-rw-r--r-- | packages/server/src/helpers/asciiToBinary.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/server/src/helpers/asciiToBinary.ts b/packages/server/src/helpers/asciiToBinary.ts index b006edd..beb6f1d 100644 --- a/packages/server/src/helpers/asciiToBinary.ts +++ b/packages/server/src/helpers/asciiToBinary.ts @@ -3,6 +3,6 @@ * * @param input Base64-encoded string */ -export default function asciiToBinary(input: string) { +export default function asciiToBinary(input: string): string { return Buffer.from(input, 'base64').toString('binary'); } |