t-comm
Version:
专业、稳定、纯粹的工具库
20 lines (16 loc) • 465 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
/**
* 获取 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');
}
exports.getDotenvExpand = getDotenvExpand;