()
| 1086 | } |
| 1087 | |
| 1088 | function readInputImage() { |
| 1089 | if (!this.files || !this.files.length) return; |
| 1090 | |
| 1091 | Array.from(this.files).forEach(file => { |
| 1092 | readInputImageFile(file); |
| 1093 | }); |
| 1094 | } |
| 1095 | |
| 1096 | function readInputImageFile(file) { |
| 1097 | const FR = new FileReader(); |
nothing calls this directly
no test coverage detected