frontend/.pnpm-store/v3/files/91/7008bedb44f9cb1ee2eb7659b82e4502ff11c685d8ef8d1ecc0dfd2bf68edc06c6e5e66660d9fed15c7ec25e57291ed89aec4ffcc52aebfa457f942309da0a

19 lines
313 B
Plaintext

---
labels: ['configuration']
description: 'A function for repacing env variables in configuration settings'
---
API:
```ts
function envReplace(settingValue: string, env: NodeJS.ProcessEnv): string;
```
Usage:
```ts
import { envReplace } from '@pnpm/config.env-replace'
envReplace('${foo}', process.env)
```