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