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/background/actions/tab.js
2017-11-16 13:03:38 +00:00

5 lines
112 B
JavaScript

const openToTab = (url, tab) => {
return browser.tabs.update(tab.id, { url: url });
};
export { openToTab };