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) 195 B
"use strict"; class EnvParseError extends Error { constructor(message) { super(message); this.name = "EnvParseError"; } } module.exports = { EnvParseError }