Commit 9e85c59
authored
Fix argument type of fs.writeFileSync (#1075)
It causes error in Node version 14+.
A number type is not valid for the second argument
of fs.writeFileSync from the documentation.
https://nodejs.org/docs/latest-v14.x/api/fs.html#fs_fs_writefilesync_file_data_options1 parent 58eb131 commit 9e85c59
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
87 | | - | |
| 87 | + | |
0 commit comments