UNPKG

t-comm

Version:

专业、稳定、纯粹的工具库

16 lines (14 loc) 371 B
/** * 获取 dotenv-expand 库 * dotenv-expand 是一个用于扩展 dotenv 环境变量的第三方库 * @returns dotenv-expand 库 * @example * ```ts * const dotenvExpand = getDotenvExpand(); * dotenvExpand.expand({ parsed: { FOO: 'bar', BAZ: '$FOO' } }); * ``` */ function getDotenvExpand() { return require('dotenv-expand'); } export { getDotenvExpand };