UNPKG
fet-block
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.0
fetBlock is a web h5 request hook library
github.com/webjohnjiang/fet-block
webjohnjiang/fet-block
fet-block
/
src
/
tools
/
log.js
8 lines
(7 loc)
•
218 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{ getUrlParams }
from
"./url"
;
export
function
printDebugLog
(
...args
) {
const
isDebug =
getUrlParams
(
window
.
location
.
href
,
'fetblock_debug'
);
if
(isDebug) {
console
.
warn
(...args); } }