CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
intersects.js8 linesDownload Raw Back to ranges
1const Range = require('../classes/range')2const intersects = (r1, r2, options) => {3  r1 = new Range(r1, options)4  r2 = new Range(r2, options)5  return r1.intersects(r2, options)6}7module.exports = intersects8