Your Name 056619c27f null
2024-03-15 14:39:48 +08:00

8 lines
201 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)
}
module.exports = intersects