]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - initializers/constants.js
Remove useless anonymous functions of files
[github/Chocobozzz/PeerTube.git] / initializers / constants.js
index 00b713961cf01b54ab7d547f69a9b74629ad32eb..16e50443b5c9bfa3e737c9d764a6b7fb067706bc 100644 (file)
@@ -1,37 +1,42 @@
-;(function () {
-  'use strict'
+'use strict'
 
-  var constants = {}
+// API version of our pod
+var API_VERSION = 'v1'
 
-  function isTestInstance () {
-    return (process.env.NODE_ENV === 'test')
-  }
+// Score a pod has when we create it as a friend
+var FRIEND_BASE_SCORE = 100
 
-  // API version of our pod
-  constants.API_VERSION = 'v1'
+// Time to wait between requests to the friends
+var INTERVAL = 60000
 
-  // Score a pod has when we create it as a friend
-  constants.FRIEND_BASE_SCORE = 100
+// Number of points we add/remove from a friend after a successful/bad request
+var PODS_SCORE = {
+  MALUS: -10,
+  BONUS: 10
+}
 
-  // Time to wait between requests to the friends
-  constants.INTERVAL = 60000
+// Number of retries we make for the make retry requests (to friends...)
+var REQUEST_RETRIES = 10
 
-  // Number of points we add/remove from a friend after a successful/bad request
-  constants.PODS_SCORE = {
-    MALUS: -10,
-    BONUS: 10
-  }
+// Special constants for a test instance
+if (isTestInstance() === true) {
+  FRIEND_BASE_SCORE = 20
+  INTERVAL = 10000
+  REQUEST_RETRIES = 2
+}
 
-  // Number of retries we make for the make retry requests (to friends...)
-  constants.REQUEST_RETRIES = 10
+// ---------------------------------------------------------------------------
 
-  // Special constants for a test instance
-  if (isTestInstance() === true) {
-    constants.FRIEND_BASE_SCORE = 20
-    constants.INTERVAL = 10000
-    constants.REQUEST_RETRIES = 2
-  }
+module.exports = {
+  API_VERSION: API_VERSION,
+  FRIEND_BASE_SCORE: FRIEND_BASE_SCORE,
+  INTERVAL: INTERVAL,
+  PODS_SCORE: PODS_SCORE,
+  REQUEST_RETRIES: REQUEST_RETRIES
+}
 
-  // ----------- Export -----------
-  module.exports = constants
-})()
+// ---------------------------------------------------------------------------
+
+function isTestInstance () {
+  return (process.env.NODE_ENV === 'test')
+}