greena13/react-hotkeys

View on GitHub
src/lib/listening/FocusTree.js

Summary

Maintainability
A
0 mins
Test Coverage
class FocusTree {
  constructor() {
    this.id = 0;
  }

  isNewerThan(id) {
    return this.id !== id;
  }

  new() {
    this.id += 1;
  }
}

export default FocusTree;