aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/utils.ts
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-05-15 22:22:03 +0200
committerChocobozzz <florian.bigard@gmail.com>2017-05-20 09:57:40 +0200
commit65fcc3119c334b75dd13bcfdebf186afdc580a8f (patch)
tree4f2158c61a9b7c3f47cfa233d01413b946ee53c0 /server/models/utils.ts
parentd5f345ed4cfac4e1fa84dcb4fce1cda4d32f9c73 (diff)
downloadPeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.gz
PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.zst
PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.zip
First typescript iteration
Diffstat (limited to 'server/models/utils.ts')
-rw-r--r--server/models/utils.ts21
1 files changed, 21 insertions, 0 deletions
diff --git a/server/models/utils.ts b/server/models/utils.ts
new file mode 100644
index 000000000..601811913
--- /dev/null
+++ b/server/models/utils.ts
@@ -0,0 +1,21 @@
1// Translate for example "-name" to [ 'name', 'DESC' ]
2function getSort (value) {
3 let field
4 let direction
5
6 if (value.substring(0, 1) === '-') {
7 direction = 'DESC'
8 field = value.substring(1)
9 } else {
10 direction = 'ASC'
11 field = value
12 }
13
14 return [ field, direction ]
15}
16
17// ---------------------------------------------------------------------------
18
19export {
20 getSort
21}