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/presenters/tab.js
2018-07-22 11:33:52 +09:00

5 lines
93 B
JavaScript

export default class TabPresenter {
create(url) {
browser.tabs.create({ url, });
}
}