MCPcopy
hub / github.com/dropzone/dropzone / getActiveFiles

Method getActiveFiles

src/dropzone.js:210–217  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

208
209 // Files that are either queued or uploading
210 getActiveFiles() {
211 return this.files
212 .filter(
213 (file) =>
214 file.status === Dropzone.UPLOADING || file.status === Dropzone.QUEUED
215 )
216 .map((file) => file);
217 }
218
219 // The function that gets called when Dropzone is initialized. You
220 // can (and should) setup event listeners inside this function.

Callers 2

test.jsFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected