1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-03 17:59:37 +02:00
Peertube/server/models/utils.ts
2017-05-20 09:57:40 +02:00

21 lines
394 B
TypeScript

// Translate for example "-name" to [ 'name', 'DESC' ]
function getSort (value) {
let field
let direction
if (value.substring(0, 1) === '-') {
direction = 'DESC'
field = value.substring(1)
} else {
direction = 'ASC'
field = value
}
return [ field, direction ]
}
// ---------------------------------------------------------------------------
export {
getSort
}