UNPKG

tiny-anchor

Version:

This project is designed to provide navigation tools to minimize footprint (browser history).

13 lines (9 loc) 201 B
class AnchorHandler { constructor() {} navigate(event, location) { event.preventDefault(); window.location.replace(location); return false; } } const anchor = new AnchorHandler();