Skip to content

Commit a558c77

Browse files
committed
document, please ignore
1 parent 1cd6420 commit a558c77

File tree

2 files changed

+32
-3
lines changed

2 files changed

+32
-3
lines changed

README.md

+32-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,32 @@
1-
# log-n
1+
# log-n
2+
3+
4+
## Install
5+
6+
```
7+
npm i -S log-n
8+
```
9+
10+
## Usages
11+
12+
default level = 10
13+
14+
```
15+
require('log-n')({
16+
a:2,
17+
b:{
18+
c:3
19+
}
20+
})
21+
```
22+
23+
with level params
24+
25+
```
26+
require('log-n')({
27+
a:2,
28+
b:{
29+
c:3
30+
}
31+
}, 1000)
32+
```

test.js

-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,3 @@ require('./')({
44
c:3
55
}
66
})
7-
8-
require('./')()

0 commit comments

Comments
 (0)