@humanwhocodes/env
Advanced tools
Comparing version 2.1.1 to 2.1.2
{ | ||
"name": "@humanwhocodes/env", | ||
"version": "2.1.1", | ||
"version": "2.1.2", | ||
"description": "A utility to verify that environment variables exist.", | ||
@@ -5,0 +5,0 @@ "main": "dist/env.cjs.js", |
@@ -42,11 +42,5 @@ # Env utility | ||
```js | ||
import { Env } from "https://deno.land/x/env/env.js"; | ||
import { Env } from "https://cdn.skypack.dev/@humanwhocodes/env?dts"; | ||
``` | ||
Or | ||
```js | ||
import { Env } from "https://cdn.skypack.dev/@humanwhocodes/env"; | ||
``` | ||
By default, an `Env` instance will read from `Deno.env`. | ||
@@ -59,3 +53,3 @@ | ||
```js | ||
import { Env } from "https://unpkg.com/@humanwhocodes/env/dist/env.min.js"; | ||
import { Env } from "https://cdn.skypack.dev/@humanwhocodes/env?min"; | ||
``` | ||
@@ -66,5 +60,6 @@ | ||
```js | ||
import { Env } from "https://unpkg.com/@humanwhocodes/env/dist/env.js"; | ||
import { Env } from "https://cdn.skypack.dev/@humanwhocodes/env"; | ||
``` | ||
By default, an `Env` instance will read from an empty object. | ||
@@ -71,0 +66,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
22892
143