F = new AFileSystem({
foo: [7],
bar: {
baz: [88, 99, 128],
depth: Object.assign([], {
first: new AFile("first", "first"),
last: new AFile("last", "last")
}),
blob: {
utf8: [new AFile("utf8", new Blob([new TextEncoder().encode("cow")]))],
utf16: [
new AFile("utf16", new Blob([new Uint8Array(encodeString("pig"))]))
]
},
[FILE]: (fs, path, name, version, rest, tree) => {
if (version === -1) {
return [new AFile(name, [fs, path, name, version, rest, tree])];
} else {
const files = [];
files[version] = new AFile(name, [fs, path, name, version, rest, tree]);
return files;
}
},
[DIRECTORY]: (fs, path, name, version, rest, tree) => ({
call: [new AFile(name, [fs, path, name, version, rest, tree])]
})
},
senate: meta(
[meta(FileAttachment("ROLL_SENATE_2020_292.json"), { revision: 'final' })],
{ chamber: 'senate' }
),
attachment: [
new AFile('stream', (file, type) =>
FileAttachment("ROLL_SENATE_2020_292.json")[type]()
)
],
stream: [
new AFile('stream', (file, type) =>
FileAttachment("ROLL_SENATE_2020_292.json").stream()
)
]
})