Project

General

Profile

Download (666 Bytes) Statistics
| Branch: | Tag: | Revision:

haketilo / common / browser.js @ 4c6a2323

1
/**
2
 * This file is part of Haketilo.
3
 *
4
 * Function: Export the browser API object.
5
 *
6
 * Copyright (C) 2021 Wojtek Kosior
7
 *
8
 * This program is free software: you can redistribute it and/or modify
9
 * it under the terms of the CC0 1.0 Universal License as published by
10
 * the Creative Commons Corporation.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 * CC0 1.0 Universal License for more details.
16
 */
17

    
18
#IF MOZILLA
19

    
20
#EXPORT  globalThis.browser  AS browser
21

    
22
#ELIF CHROMIUM
23

    
24
#EXPORT  chrome  AS browser
25

    
26
#ENDIF
(2-2/10)