Files
tubestation/addon-sdk/source/lib/sdk/tabs/helpers.js
Kris Maglione 803885db85 Bug 1314861: Lazily load most SDK module imports. r=rpl
MozReview-Commit-ID: 3mneEkzljiU
2017-04-07 18:11:32 -07:00

23 lines
628 B
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
'use strict';
module.metadata = {
'stability': 'unstable'
};
// NOTE: This file should only export Tab instances
lazyRequire(this, './utils', { "getTabForBrowser": "getRawTabForBrowser" });
const { modelFor } = require('../model/core');
exports.getTabForRawTab = modelFor;
function getTabForBrowser(browser) {
return modelFor(getRawTabForBrowser(browser)) || null;
}
exports.getTabForBrowser = getTabForBrowser;