UNPKG
itlog
Version:
latest (0.2.0)
0.2.0
0.1.0
Simplest of Loggers.
github.com/genediazjr/itlog
genediazjr/itlog
itlog
/
dist
/
itlog.min.js
3 lines
(2 loc)
•
225 B
JavaScript
View Raw
1
2
3
'use strict'
;
var
itlog=
function
itlog
(
a
){
'undefined'
!=
typeof
process&&process.
stdout
?process.
stdout
.
write
(a+
'\n'
):
console
.
log
(a+
'\n'
)};
// $lab:coverage:off$
'undefined'
!=
typeof
module
&&
module
.
exports
&&(
module
.
exports
=itlog);