@hyurl/utils
Advanced tools
Comparing version 0.2.5 to 0.2.6
/** Creates an array composed without the picked items. */ | ||
export default function omit<T extends any[]>(arr: T, items: number[]): T; | ||
export default function omit<T extends any>(arr: T[], items: T[]): T[]; | ||
/** | ||
@@ -4,0 +4,0 @@ * Creates an object composed without the picked properties. |
{ | ||
"name": "@hyurl/utils", | ||
"version": "0.2.5", | ||
"version": "0.2.6", | ||
"description": "Utility functions of HyURL collection.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -130,3 +130,3 @@ # HyURL Utilities | ||
```sh | ||
deno run --unstable --allow-read test-deno.ts | ||
deno run --unstable --allow-read --allow-env test-deno.ts | ||
``` | ||
@@ -147,3 +147,3 @@ | ||
# or | ||
deno test --unstable --allow-read test/deno/example.ts | ||
deno test --unstable --allow-read --allow-env test/deno/example.ts | ||
``` | ||
@@ -154,3 +154,3 @@ | ||
```sh | ||
deno test --unstable --allow-read vendors/hyurl/utils/test/deno/example.ts | ||
``` | ||
deno test --unstable --allow-read --allow-env vendors/hyurl/utils/test/deno/example.ts | ||
``` |
Sorry, the diff of this file is not supported yet
203174
154