(path, object, data)
| 94 | // Public methods |
| 95 | |
| 96 | static add(path, object, data) { |
| 97 | this.routes.set(path, { object, data }); |
| 98 | } |
| 99 | |
| 100 | static get(path) { |
| 101 | let value = this.routes.get(`/${path.replace(this.path, '').split('/')[1]}`); |
no test coverage detected