lightning-fs icon indicating copy to clipboard operation
lightning-fs copied to clipboard

Implement NodeJS 14 fs.rm

Open jcubic opened this issue 4 years ago • 1 comments

fs.rm is a new API in NodeJS fs module, that allows running recursive delete of directories. I can be handy in isomorphic-git/isomorphic-git#1383

jcubic avatar Jul 02 '21 14:07 jcubic

This is related to #71. Note that in newer versions of Node, the recursive option is now deprecated on rmdir. The rm function has replaced it. See https://nodejs.org/api/fs.html#fs_fspromises_rmdir_path_options

mojavelinux avatar Jul 04 '21 20:07 mojavelinux