@bugsplat/symbol-upload
Version:
Cross platform symbol upload tool
13 lines • 333 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.fileExists = fileExists;
const promises_1 = require("node:fs/promises");
async function fileExists(path) {
try {
return !!(await (0, promises_1.stat)(path));
}
catch {
return false;
}
}
//# sourceMappingURL=fs.js.map