summaryrefslogtreecommitdiff
path: root/ext/web/09_file.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/web/09_file.js')
-rw-r--r--ext/web/09_file.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/web/09_file.js b/ext/web/09_file.js
index 1ecebe8a8..cb42c8c72 100644
--- a/ext/web/09_file.js
+++ b/ext/web/09_file.js
@@ -492,7 +492,7 @@ class File extends Blob {
*/
constructor(fileBits, fileName, options = {}) {
const prefix = "Failed to construct 'File'";
- webidl.requiredArguments(arguments.length, 2, { prefix });
+ webidl.requiredArguments(arguments.length, 2, prefix);
fileBits = webidl.converters["sequence<BlobPart>"](fileBits, {
context: "Argument 1",