()
| 949 | }; |
| 950 | |
| 951 | function readInputFile() { |
| 952 | if (!this.files || !this.files.length) return; |
| 953 | |
| 954 | Array.from(this.files).forEach(file => { |
| 955 | readInputFileFile(file); |
| 956 | }); |
| 957 | } |
| 958 | |
| 959 | function readInputFileFile(file) { |
| 960 | const FR = new FileReader(); |
nothing calls this directly
no test coverage detected