django-vue3-admin-web/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js
2025-10-20 21:21:14 +08:00

5 lines
263 B
JavaScript

import { join } from "path";
import { getHomeDir } from "./getHomeDir";
export const ENV_CREDENTIALS_PATH = "AWS_SHARED_CREDENTIALS_FILE";
export const getCredentialsFilepath = () => process.env[ENV_CREDENTIALS_PATH] || join(getHomeDir(), ".aws", "credentials");