Skip to content

Commit a7710bd

Browse files
committed
Revert formatting change
1 parent b7ec98c commit a7710bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/file/src/file.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class File extends Blob {
1212
constructor(
1313
init,
1414
name = panic(new TypeError("File constructor requires name argument")),
15-
options = {},
15+
options = {}
1616
) {
1717
super(init, options)
1818
// Per File API spec https://w3c.github.io/FileAPI/#file-constructor
@@ -59,6 +59,6 @@ export class File extends Blob {
5959
* @param {*} error
6060
* @returns {never}
6161
*/
62-
const panic = (error) => {
62+
const panic = error => {
6363
throw error
6464
}

0 commit comments

Comments
 (0)