UNPKG

@bugsplat/symbol-upload

Version:
13 lines 333 B
"use strict"; 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