aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators/misc.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/helpers/custom-validators/misc.ts')
-rw-r--r--server/helpers/custom-validators/misc.ts14
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 @@
1function exists (value) {
2 return value !== undefined && value !== null
3}
4
5function isArray (value) {
6 return Array.isArray(value)
7}
8
9// ---------------------------------------------------------------------------
10
11export {
12 exists,
13 isArray
14}