/**
* A scroll behavior that always scrolls to the top of the page
* after a transition.
*/"use strict";
varScrollToTopBehavior = {
updateScrollPosition: functionupdateScrollPosition() {
window.scrollTo(0, 0);
}
};
module.exports = ScrollToTopBehavior;