Skip to content

Commit 5897adc

Browse files
committed
drop v10 from workflow
1 parent c6cb0db commit 5897adc

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
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

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Install via npm
1616
npm install jsonfromtable
1717
```
1818

19-
Or yarn
19+
Or via yarn
2020

2121
```sh
2222
yarn add jsonfromtable
@@ -96,6 +96,7 @@ const json = jsonFromTable({
9696
html: `<table>...</table>`,
9797
format: 'json',
9898
})
99+
console.log(json)
99100

100101
jsonFromTable({
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

0 commit comments

Comments
 (0)