2fas-browser-extension/webpack/utils/browserRegExps.js
2023-03-21 08:20:34 +01:00

29 lines
1.0 KiB
JavaScript

//
// This file is part of the 2FAS Browser Extension (https://github.com/twofas/2fas-browser-extension)
// Copyright © 2023 Two Factor Authentication Service, Inc.
// Contributed by Grzegorz Zając. All rights reserved.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>
//
const BrowserRegExps = {
chrome: /chrome\.html$/,
firefox: /firefox\.html$/,
opera: /opera\.html$/,
safari: /safari\.html$/,
edge: /edge\.html$/
};
module.exports = BrowserRegExps;