| 6 | window.addEventListener('mousemove', ev => mouse = getMousePos(ev)); |
| 7 | |
| 8 | export class Cursor { |
| 9 | constructor(el) { |
| 10 | this.DOM = {el: el}; |
| 11 | this.DOM.svg = this.DOM.el.querySelector('.cursor__svg'); |
nothing calls this directly
no outgoing calls
no test coverage detected