]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/utils/miscs.js
Begin user quota
[github/Chocobozzz/PeerTube.git] / server / tests / utils / miscs.js
CommitLineData
8d309058
C
1'use strict'
2
3const miscsUtils = {
c4403b29 4 dateIsValid
8d309058
C
5}
6
7// ---------------------- Export functions --------------------
8
79066fdf 9function dateIsValid (dateString, interval) {
8d309058
C
10 const dateToCheck = new Date(dateString)
11 const now = new Date()
12
13 // Check if the interval is more than 2 minutes
79066fdf
C
14 if (!interval) interval = 120000
15
16 if (now - dateToCheck > interval) return false
8d309058
C
17
18 return true
19}
20
21// ---------------------------------------------------------------------------
22
23module.exports = miscsUtils