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