> const r = wayfarer()
undefined
> r.on('/', () => console.log('route hit'))
{ [Function: emit]
_trie: Trie { trie: { nodes: [Object] } },
emit: [Circular],
on: [Function: on],
_wayfarer: true }
> r('/')
route hit
undefined
> r('/foobar')
route hit
Expected that second one to not trigger the route.