UNPKG
@squid-dev/cc-web-term
Version:
latest (2.0.1)
2.0.1
2.0.0
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
1.0.0
A ComputerCraft terminal for the internet
github.com/SquidDev-CC/cc-web-term
SquidDev-CC/cc-web-term
@squid-dev/cc-web-term
/
dist
/
log.js
6 lines
(5 loc)
•
227 B
JavaScript
View Raw
1
2
3
4
5
6
const
debug =
window
.
location
.
protocol
===
"file:"
||
window
.
location
.
hostname
===
"localhost"
;
/* eslint-disable no-console */
export
default
debug ?
(
name
) =>
(
msg
) =>
console
.
log
(
`[
${name}
]
${msg}
`
) :
() =>
() =>
0
;