UNPKG
@zalando/zally-web-ui
Version:
latest (0.4.0)
0.4.0
0.3.0
0.2.0
0.1.1
Zally API Linter Web UI
github.com/zalando/zally/web-ui
zalando/zally
@zalando/zally-web-ui
/
src
/
client
/
app
/
services
/
debug.js
9 lines
(8 loc)
•
270 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
function
debug
(
) {
if
(
typeof
window
!==
'undefined'
&&
window
.
env
&&
window
.
env
.
DEBUG
) {
/* eslint-disable no-console */
typeof
console
.
debug
===
'function'
?
console
.
debug
.
apply
(
null
,
arguments
) :
console
.
log
.
apply
(
null
,
arguments
); } }