File: fsUtils.ts

package info (click to toggle)
node-corepack 0.24.0-5
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 262,916 kB
  • sloc: javascript: 94; makefile: 18; sh: 12
file content (5 lines) | stat: -rw-r--r-- 131 bytes parent folder | download
1
2
3
4
5
import {rm} from 'fs/promises';

export async function rimraf(path: string) {
  return rm(path, {recursive: true, force: true});
}