UNPKG

277 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const fs = require("fs");
4function unlinkSafe(path) {
5 try {
6 fs.unlinkSync(path);
7 return true;
8 }
9 catch (_a) {
10 return false;
11 }
12}
13exports.unlinkSafe = unlinkSafe;