UNPKG
namillum
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.1
1.0.0
Bubble Protocol SDK
github.com/ValentinaKohler/namillum
ValentinaKohler/namillum
namillum
/
products
/
zillion
/
src
/
util
/
logger.ts
7 lines
(6 loc)
•
203 B
text/typescript
View Raw
1
2
3
4
5
6
7
const
IS_DEV_ENV
= !process.
env
.
NODE_ENV
|| process.
env
.
NODE_ENV
===
"development"
export
const
logger =
function
(
...args: any
) {
if
(
IS_DEV_ENV
) {
console
.
log
.
apply
(
console
, args); } }