mirror of
https://github.com/bnmgh1/NodeSandbox.git
synced 2025-04-16 16:07:10 +08:00
8 lines
201 B
JavaScript
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
|