diff options
Diffstat (limited to 'server/helpers/custom-validators/misc.ts')
-rw-r--r-- | server/helpers/custom-validators/misc.ts | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/server/helpers/custom-validators/misc.ts b/server/helpers/custom-validators/misc.ts new file mode 100644 index 000000000..83f50a7fe --- /dev/null +++ b/server/helpers/custom-validators/misc.ts | |||
@@ -0,0 +1,14 @@ | |||
1 | function exists (value) { | ||
2 | return value !== undefined && value !== null | ||
3 | } | ||
4 | |||
5 | function isArray (value) { | ||
6 | return Array.isArray(value) | ||
7 | } | ||
8 | |||
9 | // --------------------------------------------------------------------------- | ||
10 | |||
11 | export { | ||
12 | exists, | ||
13 | isArray | ||
14 | } | ||