remove log
This commit is contained in:
parent
27020cb211
commit
3cb3c3a148
|
@ -109,7 +109,6 @@ export async function readDataTransferItems(itemList: DataTransferItemList): Pro
|
||||||
* {@link DroppedItem}のリストからディレクトリを再帰的に検索し、ファイルのリストを取得する。
|
* {@link DroppedItem}のリストからディレクトリを再帰的に検索し、ファイルのリストを取得する。
|
||||||
*/
|
*/
|
||||||
export function flattenDroppedFiles(items: DroppedItem[]): DroppedFile[] {
|
export function flattenDroppedFiles(items: DroppedItem[]): DroppedFile[] {
|
||||||
console.log(items);
|
|
||||||
const result = Array.of<DroppedFile>();
|
const result = Array.of<DroppedFile>();
|
||||||
for (const item of items) {
|
for (const item of items) {
|
||||||
if (item.isFile) {
|
if (item.isFile) {
|
||||||
|
|
Loading…
Reference in New Issue