the reminder not showing content on the card at dashboard view and the quizes are hardcoded must move to the db make api's for it
8 lines
210 B
JavaScript
8 lines
210 B
JavaScript
const Range = require('../classes/range')
|
|
const intersects = (r1, r2, options) => {
|
|
r1 = new Range(r1, options)
|
|
r2 = new Range(r2, options)
|
|
return r1.intersects(r2, options)
|
|
}
|
|
module.exports = intersects
|