diff options
Diffstat (limited to 'server/helpers/utils.ts')
-rw-r--r-- | server/helpers/utils.ts | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/server/helpers/utils.ts b/server/helpers/utils.ts index 1dcbd31c4..8e489de96 100644 --- a/server/helpers/utils.ts +++ b/server/helpers/utils.ts | |||
@@ -23,10 +23,6 @@ function createEmptyCallback () { | |||
23 | } | 23 | } |
24 | } | 24 | } |
25 | 25 | ||
26 | function isTestInstance () { | ||
27 | return process.env.NODE_ENV === 'test' | ||
28 | } | ||
29 | |||
30 | function getFormatedObjects (objects: any[], objectsTotal: number) { | 26 | function getFormatedObjects (objects: any[], objectsTotal: number) { |
31 | const formatedObjects = [] | 27 | const formatedObjects = [] |
32 | 28 | ||
@@ -40,18 +36,11 @@ function getFormatedObjects (objects: any[], objectsTotal: number) { | |||
40 | } | 36 | } |
41 | } | 37 | } |
42 | 38 | ||
43 | function root () { | ||
44 | // We are in /dist/helpers/utils.js | ||
45 | return join(__dirname, '..', '..', '..') | ||
46 | } | ||
47 | |||
48 | // --------------------------------------------------------------------------- | 39 | // --------------------------------------------------------------------------- |
49 | 40 | ||
50 | export { | 41 | export { |
51 | badRequest, | 42 | badRequest, |
52 | createEmptyCallback, | 43 | createEmptyCallback, |
53 | generateRandomString, | 44 | generateRandomString, |
54 | isTestInstance, | 45 | getFormatedObjects |
55 | getFormatedObjects, | ||
56 | root | ||
57 | } | 46 | } |