File size: 492 Bytes
22c7264
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bcf9be5
22c7264
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
 * Responsible for validating positions and is used
 * when manipulating positions across the application
 */
export default class Position {
  /**
   * @param left
   * @param top
   * @param right
   * @param bottom
   */
  constructor({
    left = 0,
    top = 0,
    right = 0,
    bottom = 0,
  }) {
    this.left = left;
    this.right = right;
    this.top = top;
    this.bottom = bottom;
  }

  canHighlight() {
    return this.left < this.right && this.top < this.bottom;
  }
}