lukeed / klona

A tiny (240B to 501B) and fast utility to "deep clone" Objects, Arrays, Dates, RegExps, and more!
MIT License
1.62k stars 43 forks source link

Can it clone the File object? #42

Open AjaxSolutions opened 1 year ago

AjaxSolutions commented 1 year ago

https://developer.mozilla.org/en-US/docs/Web/API/File

jimmywarting commented 1 year ago

I don't think this lib can but structuredClone can at least.

anyway to clone a file one would have to do: new File([file], file.name, file) to clone it