jvilk / BrowserFS

BrowserFS is an in-browser filesystem that emulates the Node JS filesystem API and supports storing and retrieving files from various backends.
Other
3.06k stars 215 forks source link

Update node_fs_stats.ts #277

Closed dsl400 closed 1 year ago

dsl400 commented 4 years ago

changed implements to extends in node_fs_stats.ts

james-pre commented 1 year ago

This should stay as implements. In a browser, fs.Stats is undefined (and therefore cannot be extended). The transpiled typescript will work fine though.

emeryberger commented 1 year ago

Safe to close, @james-pre?

james-pre commented 1 year ago

@emeryberger Yes, it should be safe to close.