(message: string)
| 3 | import { DotenvParseOptions, DotenvParseOutput, DotenvConfigOptions, DotenvConfigOutput } from './structs' |
| 4 | |
| 5 | const log = (message: string) => console.log(`[dotenv][DEBUG] ${message}`) |
| 6 | |
| 7 | const NEWLINE = '\n' |
| 8 | const RE_INI_KEY_VAL = /^\s*([\w.-]+)\s*=\s*(.*)?\s*$/ |