Rocky_Mountain_Vending/.pnpm-store/v10/files/37/a3335a47d50a611137b666545651883c5a44d5c34609a6078f02436a9699da91e227da23a2aba0af995e0d1e6a203b729623720379e3a0fb86dced7dd88b7c
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

26 lines
No EOL
653 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "isWriteable", {
enumerable: true,
get: function() {
return isWriteable;
}
});
const _fs = /*#__PURE__*/ _interop_require_default(require("fs"));
function _interop_require_default(obj) {
return obj && obj.__esModule ? obj : {
default: obj
};
}
async function isWriteable(directory) {
try {
await _fs.default.promises.access(directory, (_fs.default.constants || _fs.default).W_OK);
return true;
} catch (err) {
return false;
}
}
//# sourceMappingURL=is-writeable.js.map