UNPKG

@d3vtool/strict-env

Version:

A utility to automatically load and validate environment variables from `.env` files, ensuring they're properly configured before your system starts.

11 lines (10 loc) 280 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EnvParseError = void 0; class EnvParseError extends Error { constructor(message) { super(message); this.name = "EnvParseError"; } } exports.EnvParseError = EnvParseError;