File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,9 @@ Changelog
1414- index.js can now be imported by browser & deno since it no longer depends on any
1515 core node features (but why would you? other environment can benefit from it)
1616
17+ ## v2.1.2
18+ - Fixed a bug where ` start ` in BlobDataItem was undefined (#85 )
19+
1720## v2.1.1
1821- Add nullish values checking in Symbol.hasInstance (#82 )
1922- 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 => {
187187 t . is ( actual , '' ) ;
188188} ) ;
189189
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+
190196test ( 'Blob-ish class is an instance of Blob' , t => {
191197 class File {
192198 stream ( ) { }
You can’t perform that action at this time.
0 commit comments