diff options
Diffstat (limited to 'ext/web/09_file.js')
-rw-r--r-- | ext/web/09_file.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/web/09_file.js b/ext/web/09_file.js index 516e80adf..43d9ffcb3 100644 --- a/ext/web/09_file.js +++ b/ext/web/09_file.js @@ -220,7 +220,7 @@ * @param {string} [contentType] * @returns {Blob} */ - slice(start, end, contentType) { + slice(start = undefined, end = undefined, contentType = undefined) { webidl.assertBranded(this, Blob); const prefix = "Failed to execute 'slice' on 'Blob'"; if (start !== undefined) { |