File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 11
11
strategy :
12
12
matrix :
13
13
os : [ubuntu-latest, windows-latest, macos-latest]
14
- node-version : [14, 12, 10 ]
14
+ node-version : [14, 12]
15
15
16
16
steps :
17
17
- name : Checkout
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Install via npm
16
16
npm install jsonfromtable
17
17
```
18
18
19
- Or yarn
19
+ Or via yarn
20
20
21
21
``` sh
22
22
yarn add jsonfromtable
@@ -96,6 +96,7 @@ const json = jsonFromTable({
96
96
html: ` <table>...</table>` ,
97
97
format: ' json' ,
98
98
})
99
+ console .log (json)
99
100
100
101
jsonFromTable ({
101
102
url: ` https://example.com` ,
@@ -106,6 +107,7 @@ const [headers, body] = jsonFromTable({
106
107
html: ` <table>...</table>` ,
107
108
format: ' raw' ,
108
109
})
110
+ console .log ({ headers, body })
109
111
```
110
112
111
113
### selector
You can’t perform that action at this time.
0 commit comments