@expressots/shared
Version:
Shared library for ExpressoTS modules 🐎
11 lines (10 loc) • 390 B
TypeScript
/**
* LINE_REGEX is a regular expression that matches a line in a .env file.
* It is used to parse the content of the .env file.
*/
export declare const LINE_REGEX: RegExp;
/**
* ENV_VAR_REGEX is a regular expression that matches an environment variable in the command line.
* It is used to parse the options passed in the command line.
*/
export declare const ENV_VAR_REGEX: RegExp;