Skip to content
This repository was archived by the owner on Mar 16, 2019. It is now read-only.

Commit c7a667a

Browse files
committed
Fix type annotation #134
1 parent a05a7d9 commit c7a667a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/polyfill/Blob.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ export default class Blob extends EventTarget {
224224
* @param {string} contentType Optional, content type of new Blob object
225225
* @return {Blob}
226226
*/
227-
slice(start:?number, end:?number, contentType='':?string):Blob {
227+
slice(start:?number, end:?number, contentType:?string=''):Blob {
228228
if(this._closed)
229229
throw 'Blob has been released.'
230230
log.verbose('slice called', start, end, contentType)

0 commit comments

Comments
 (0)