diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-05-15 22:22:03 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-05-20 09:57:40 +0200 |
commit | 65fcc3119c334b75dd13bcfdebf186afdc580a8f (patch) | |
tree | 4f2158c61a9b7c3f47cfa233d01413b946ee53c0 /server/models/utils.js | |
parent | d5f345ed4cfac4e1fa84dcb4fce1cda4d32f9c73 (diff) | |
download | PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.gz PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.zst PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.zip |
First typescript iteration
Diffstat (limited to 'server/models/utils.js')
-rw-r--r-- | server/models/utils.js | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/server/models/utils.js b/server/models/utils.js deleted file mode 100644 index 49636b3d8..000000000 --- a/server/models/utils.js +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | 'use strict' | ||
2 | |||
3 | const utils = { | ||
4 | getSort | ||
5 | } | ||
6 | |||
7 | // Translate for example "-name" to [ 'name', 'DESC' ] | ||
8 | function getSort (value) { | ||
9 | let field | ||
10 | let direction | ||
11 | |||
12 | if (value.substring(0, 1) === '-') { | ||
13 | direction = 'DESC' | ||
14 | field = value.substring(1) | ||
15 | } else { | ||
16 | direction = 'ASC' | ||
17 | field = value | ||
18 | } | ||
19 | |||
20 | return [ field, direction ] | ||
21 | } | ||
22 | |||
23 | // --------------------------------------------------------------------------- | ||
24 | |||
25 | module.exports = utils | ||