UNPKG

choo-shortcache

Version:

choo nanocomponent cache shortcut

11 lines (9 loc) 215 B
module.exports = scrollToAnchor function scrollToAnchor (anchor, options) { if (anchor) { try { var el = document.querySelector(anchor) if (el) el.scrollIntoView(options) } catch (e) {} } }