mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
- new `ingoreFunctions` option - version bump - tests amended https://github.com/niftylettuce/dotenv-parse-variables/compare/v0.2.3...v2.0.0 Thanks!
10 lines
355 B
TypeScript
10 lines
355 B
TypeScript
import dotenvParseVariables = require("dotenv-parse-variables");
|
|
|
|
dotenvParseVariables({ a: "b" });
|
|
|
|
dotenvParseVariables({ c: "d", e: "f" }, { assignToProcessEnv: true });
|
|
|
|
dotenvParseVariables({ g: "h" }, { overrideProcessEnv: false });
|
|
|
|
dotenvParseVariables({ i: "j" }, { assignToProcessEnv: false, overrideProcessEnv: true, ignoreFunctions: false });
|