astro-ghostcms/.pnpm-store/v3/files/3f/45b72c6b0c18f5039d16d9207e7...

14 lines
292 B
Plaintext
Raw Permalink Normal View History

2024-02-14 14:10:47 +00:00
var rimraf = require('rimraf').sync;
var fs = require('fs');
module.exports = function del(file) {
if (fs.existsSync(file)) {
//if rimraf doesn't throw then the file has been deleted or didn't exist
rimraf(file, {
glob: false,
});
return true;
}
return false;
};