UNPKG
@ap-mitch/nfc-pcsc
Version:
latest (0.7.8)
0.7.8
0.7.7
0.7.6
0.7.5
0.7.4
Easy reading and writing NFC tags and cards
github.com/ap-mitch/nfc-pcsc
ap-mitch/nfc-pcsc
@ap-mitch/nfc-pcsc
/
examples
/
mini-logger.js
18 lines
(13 loc)
•
198 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"use strict"
;
// mini-logger for debugging
function
log
(
) {
console
.
log
(...
arguments
); }
const
logger = {
log
: log,
debug
: log,
info
: log,
warn
: log,
error
: log, };
export
default
logger;