This repository has been archived on 2020-04-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Vim-Vixen/src/content/histories.js
2017-08-23 21:53:02 +09:00

8 lines
123 B
JavaScript

const prev = (win) => {
win.history.back()
};
const next = (win) => {
win.history.forward()
};
export { prev, next };