Skip to content

Commit 9dc0747

Browse files
authored
Update formatting
1 parent 870be1e commit 9dc0747

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ A Blob implementation in Node.js, originally from [node-fetch](https://github.co
1010
## Installation
1111

1212
```sh
13-
$ npm install fetch-blob
13+
npm install fetch-blob
1414
```
1515

1616
## Usage
@@ -21,7 +21,7 @@ const fetch = require('node-fetch');
2121

2222
fetch('https://httpbin.org/post', {
2323
method: 'POST',
24-
body: new Blob(['hello'], { type: 'text/plain' })
24+
body: new Blob(['Hello World'], { type: 'text/plain' })
2525
})
2626
.then(res => res.json());
2727
.then(json => console.log(json));

0 commit comments

Comments
 (0)