Skip to content

Commit e8f1b2b

Browse files
authored
Merge pull request #7 from leplatrem/patch-1
Removing confusing assignment in example of README
2 parents 8513ec6 + a4190e0 commit e8f1b2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var toBuffer = require('blob-to-buffer')
3030
// Get a Blob somehow...
3131
var blob = new Blob([ new Uint8Array([1, 2, 3]) ], { type: 'application/octet-binary' })
3232

33-
var buffer = toBuffer(blob, function (err, buffer) {
33+
toBuffer(blob, function (err, buffer) {
3434
if (err) throw err
3535

3636
buffer[0] // => 1

0 commit comments

Comments
 (0)