diff options
Diffstat (limited to 'server/helpers/custom-validators/misc.ts')
-rw-r--r-- | server/helpers/custom-validators/misc.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/server/helpers/custom-validators/misc.ts b/server/helpers/custom-validators/misc.ts index 1b7e00431..0c3df1cd0 100644 --- a/server/helpers/custom-validators/misc.ts +++ b/server/helpers/custom-validators/misc.ts | |||
@@ -1,7 +1,6 @@ | |||
1 | import 'multer' | 1 | import 'multer' |
2 | import * as validator from 'validator' | 2 | import * as validator from 'validator' |
3 | import { sep } from 'path' | 3 | import { sep } from 'path' |
4 | import toBoolean = require('validator/lib/toBoolean') | ||
5 | 4 | ||
6 | function exists (value: any) { | 5 | function exists (value: any) { |
7 | return value !== undefined && value !== null | 6 | return value !== undefined && value !== null |
@@ -52,7 +51,7 @@ function toIntOrNull (value: string) { | |||
52 | if (v === null || v === undefined) return v | 51 | if (v === null || v === undefined) return v |
53 | if (typeof v === 'number') return v | 52 | if (typeof v === 'number') return v |
54 | 53 | ||
55 | return validator.toInt(v) | 54 | return validator.toInt('' + v) |
56 | } | 55 | } |
57 | 56 | ||
58 | function toBooleanOrNull (value: any) { | 57 | function toBooleanOrNull (value: any) { |
@@ -61,7 +60,7 @@ function toBooleanOrNull (value: any) { | |||
61 | if (v === null || v === undefined) return v | 60 | if (v === null || v === undefined) return v |
62 | if (typeof v === 'boolean') return v | 61 | if (typeof v === 'boolean') return v |
63 | 62 | ||
64 | return toBoolean(v) | 63 | return validator.toBoolean('' + v) |
65 | } | 64 | } |
66 | 65 | ||
67 | function toValueOrNull (value: string) { | 66 | function toValueOrNull (value: string) { |