()
| 171 | } |
| 172 | |
| 173 | abort () { |
| 174 | if ( this.readyState === this.DONE ) { |
| 175 | return |
| 176 | } |
| 177 | |
| 178 | this.readyState = this.DONE |
| 179 | this.dispatchEvent( 'abort' ) |
| 180 | } |
| 181 | |
| 182 | readAsArrayBuffer ( file: NodeFile ) { |
| 183 | this.readFile( file, 'buffer' ) |
nothing calls this directly
no test coverage detected