-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilelist.js
48 lines (40 loc) · 972 Bytes
/
filelist.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import typeson from './typeson.ts'
const { toStringTag } = typeson
import file from './file.js';
const filelist = {
file: file.file,
filelist: {
test(x) { return toStringTag(x) === 'FileList'; },
replace(fl) {
const arr = [];
for (let i = 0; i < fl.length; i++) {
arr[i] = fl.item(i);
}
return arr;
},
revive(o) {
return new FileList(o);
}
}
};
// Even if native impl is available, ctor can't be invoked from userland...
/** `FileList` polyfill */
export class FileList {
#files;
#length;
/** Set private properties and length */
constructor() {
this.#files = arguments[0];
this.#length = this.#files.length;
}
/**
* @param {number} index
* @returns {File}
*/
item(index) { return this.#files[index] }
/** @returns {number} */
get length() { return this.#length }
/** @readonly @type {"FileList"} */
[Symbol.toStringTag] = 'FileList'
}
export default filelist;