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 1111 strategy :
1212 matrix :
1313 os : [ubuntu-latest, windows-latest, macos-latest]
14- node-version : [14, 12, 10 ]
14+ node-version : [14, 12]
1515
1616 steps :
1717 - name : Checkout
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Install via npm
1616npm install jsonfromtable
1717```
1818
19- Or yarn
19+ Or via yarn
2020
2121``` sh
2222yarn add jsonfromtable
@@ -96,6 +96,7 @@ const json = jsonFromTable({
9696 html: ` <table>...</table>` ,
9797 format: ' json' ,
9898})
99+ console .log (json)
99100
100101jsonFromTable ({
101102 url: ` https://example.com` ,
@@ -106,6 +107,7 @@ const [headers, body] = jsonFromTable({
106107 html: ` <table>...</table>` ,
107108 format: ' raw' ,
108109})
110+ console .log ({ headers, body })
109111```
110112
111113### selector
You can’t perform that action at this time.
0 commit comments