File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,9 @@ Changelog
14
14
- index.js can now be imported by browser & deno since it no longer depends on any
15
15
core node features (but why would you? other environment can benefit from it)
16
16
17
+ ## v2.1.2
18
+ - Fixed a bug where ` start ` in BlobDataItem was undefined (#85 )
19
+
17
20
## v2.1.1
18
21
- Add nullish values checking in Symbol.hasInstance (#82 )
19
22
- Add generated typings for from.js file (#80 )
Original file line number Diff line number Diff line change @@ -187,6 +187,12 @@ test('Reading empty blobs', async t => {
187
187
t . is ( actual , '' ) ;
188
188
} ) ;
189
189
190
+ test ( 'Reading empty blobs' , async t => {
191
+ const blob = blobFrom ( './LICENSE' ) . slice ( 0 , 0 ) ;
192
+ const actual = await blob . text ( ) ;
193
+ t . is ( actual , '' ) ;
194
+ } ) ;
195
+
190
196
test ( 'Blob-ish class is an instance of Blob' , t => {
191
197
class File {
192
198
stream ( ) { }
You can’t perform that action at this time.
0 commit comments