mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-23 18:26:32 -05:00
fixed lib/utils.ts
- added more return types - removed module wrapper Signed-off-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: David Mehren <dmehren1@gmail.com>
This commit is contained in:
parent
5c8541e65d
commit
b841b1ca4c
1 changed files with 45 additions and 48 deletions
13
lib/utils.ts
13
lib/utils.ts
|
@ -1,9 +1,10 @@
|
||||||
export module Utils {
|
import { Sequelize } from 'sequelize-typescript'
|
||||||
export function isSQLite(sequelize) {
|
|
||||||
|
export function isSQLite (sequelize: Sequelize): boolean {
|
||||||
return sequelize.options.dialect === 'sqlite'
|
return sequelize.options.dialect === 'sqlite'
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getImageMimeType(imagePath: string) {
|
export function getImageMimeType (imagePath: string): string | undefined {
|
||||||
const fileExtension = /[^.]+$/.exec(imagePath)
|
const fileExtension = /[^.]+$/.exec(imagePath)
|
||||||
switch (fileExtension?.[0]) {
|
switch (fileExtension?.[0]) {
|
||||||
case 'bmp':
|
case 'bmp':
|
||||||
|
@ -26,7 +27,7 @@ export module Utils {
|
||||||
|
|
||||||
// [Postgres] Handling NULL bytes
|
// [Postgres] Handling NULL bytes
|
||||||
// https://github.com/sequelize/sequelize/issues/6485
|
// https://github.com/sequelize/sequelize/issues/6485
|
||||||
export function stripNullByte(value) {
|
export function stripNullByte (value: string): string {
|
||||||
value = '' + value
|
value = '' + value
|
||||||
// eslint-disable-next-line no-control-regex
|
// eslint-disable-next-line no-control-regex
|
||||||
return value ? value.replace(/\u0000/g, '') : value
|
return value ? value.replace(/\u0000/g, '') : value
|
||||||
|
@ -48,7 +49,3 @@ export module Utils {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue