mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-21 10:48:58 +01:00
11 lines
161 B
JavaScript
11 lines
161 B
JavaScript
const fs = require("fs");
|
|
|
|
const path = "./data/test";
|
|
|
|
if (fs.existsSync(path)) {
|
|
fs.rmSync(path, {
|
|
recursive: true,
|
|
force: true,
|
|
});
|
|
}
|