mirror of
				https://github.com/1disk/edp445.git
				synced 2024-08-14 22:47:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			201 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			7 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
 |