diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-06-11 15:19:43 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-06-11 15:19:43 +0200 |
commit | 1840c2f7c91f5f89602a3683d85b0a9df1454855 (patch) | |
tree | 7efc223222e2d318abfaef0839a79e23be727cea /server/helpers/utils.ts | |
parent | 8635a2c70cc24a4c52558162ac058de95750271f (diff) | |
download | PeerTube-1840c2f7c91f5f89602a3683d85b0a9df1454855.tar.gz PeerTube-1840c2f7c91f5f89602a3683d85b0a9df1454855.tar.zst PeerTube-1840c2f7c91f5f89602a3683d85b0a9df1454855.zip |
Update webpack stack
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 | } |