Skip to content

Commit

Permalink
0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nberlette committed Aug 18, 2022
1 parent 0d537c5 commit dc112db
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 26 deletions.
38 changes: 19 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Opinionated collection of utilities and helpers, assembled with Deno in mind.

```ts
import * as _ from "https://deno.land/x/911@0.0.5/mod.ts";
import * as _ from "https://deno.land/x/911@0.1.0/mod.ts";
```

```tree
Expand Down Expand Up @@ -556,7 +556,7 @@ function defaultNotFoundPage(): Response;
* can disable caching by setting `cache: false` in the options object.
*
* @example ```ts
* import { serve, serveStatic } from "https://deno.land/x/911@0.0.5/src/http.ts"
* import { serve, serveStatic } from "https://deno.land/x/911@0.1.0/src/http.ts"
*
* serve({
* // It is required that the path ends with `:filename+`
Expand Down Expand Up @@ -981,20 +981,20 @@ All rights reserved.
> _Apologies to any contributors not included here - email me to have these
> credits amended with your license/copyright info. Thank you!_

[docs-cache]: https://doc.deno.land/https://deno.land/x/911@0.0.5/src/cache.ts
[docs-http]: https://doc.deno.land/https://deno.land/x/911@0.0.5/src/http.ts
[docs-hash]: https://doc.deno.land/https://deno.land/x/911@0.0.5/src/hash.ts
[docs-collection]: https://doc.deno.land/https://deno.land/x/911@0.0.5/src/collection.ts
[docs-fmt]: https://doc.deno.land/https://deno.land/x/911@0.0.5/src/fmt.ts
[docs-json]: https://doc.deno.land/https://deno.land/x/911@0.0.5/src/json.ts
[docs-log]: https://doc.deno.land/https://deno.land/x/911@0.0.5/src/log.ts
[docs-math]: https://doc.deno.land/https://deno.land/x/911@0.0.5/src/math.ts
[docs-date]: https://doc.deno.land/https://deno.land/x/911@0.0.5/src/date.ts
[docs-memoize]: https://doc.deno.land/https://deno.land/x/911@0.0.5/src/memoize.ts
[docs-serialize-map]: https://doc.deno.land/https://deno.land/x/911@0.0.5/src/serialize_map.ts
[docs-serialize-set]: https://doc.deno.land/https://deno.land/x/911@0.0.5/src/serialize_set.ts
[docs-params]: https://doc.deno.land/https://deno.land/x/911@0.0.5/src/params.ts
[docs-promises]: https://doc.deno.land/https://deno.land/x/911@0.0.5/src/promises.ts
[docs-state]: https://doc.deno.land/https://deno.land/x/911@0.0.5/src/state.ts
[docs-throttle]: https://doc.deno.land/https://deno.land/x/911@0.0.5/src/throttle.ts
[docs-type]: https://doc.deno.land/https://deno.land/x/911@0.0.5/src/type.ts
[docs-cache]: https://doc.deno.land/https://deno.land/x/911@0.1.0/src/cache.ts
[docs-http]: https://doc.deno.land/https://deno.land/x/911@0.1.0/src/http.ts
[docs-hash]: https://doc.deno.land/https://deno.land/x/911@0.1.0/src/hash.ts
[docs-collection]: https://doc.deno.land/https://deno.land/x/911@0.1.0/src/collection.ts
[docs-fmt]: https://doc.deno.land/https://deno.land/x/911@0.1.0/src/fmt.ts
[docs-json]: https://doc.deno.land/https://deno.land/x/911@0.1.0/src/json.ts
[docs-log]: https://doc.deno.land/https://deno.land/x/911@0.1.0/src/log.ts
[docs-math]: https://doc.deno.land/https://deno.land/x/911@0.1.0/src/math.ts
[docs-date]: https://doc.deno.land/https://deno.land/x/911@0.1.0/src/date.ts
[docs-memoize]: https://doc.deno.land/https://deno.land/x/911@0.1.0/src/memoize.ts
[docs-serialize-map]: https://doc.deno.land/https://deno.land/x/911@0.1.0/src/serialize_map.ts
[docs-serialize-set]: https://doc.deno.land/https://deno.land/x/911@0.1.0/src/serialize_set.ts
[docs-params]: https://doc.deno.land/https://deno.land/x/911@0.1.0/src/params.ts
[docs-promises]: https://doc.deno.land/https://deno.land/x/911@0.1.0/src/promises.ts
[docs-state]: https://doc.deno.land/https://deno.land/x/911@0.1.0/src/state.ts
[docs-throttle]: https://doc.deno.land/https://deno.land/x/911@0.1.0/src/throttle.ts
[docs-type]: https://doc.deno.land/https://deno.land/x/911@0.1.0/src/type.ts
12 changes: 6 additions & 6 deletions src/collection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ export function assign<T extends {}, U, V extends any[] = U[]>(
* @param predicate the predicate to use to filter the keys
* @returns a new object with only the keys that match the predicate
* @example ```ts
* import { filterKeys } from "https://deno.land/x/911@0.0.5/src/collection.ts";
* import { filterKeys } from "https://deno.land/x/911@0.1.0/src/collection.ts";
* import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
*
* const menu = {
Expand Down Expand Up @@ -610,7 +610,7 @@ export function filterKeys<T>(
* @example ```ts
* import {
* filterValues
* } from "https://deno.land/x/911@0.0.5/src/collection.ts";
* } from "https://deno.land/x/911@0.1.0/src/collection.ts";
*
* import {
* assertEquals
Expand Down Expand Up @@ -653,7 +653,7 @@ export function filterValues<T>(
* @example ```ts
* import {
* filterEntries
* } from "https://deno.land/x/911@0.0.5/src/collection.ts";
* } from "https://deno.land/x/911@0.1.0/src/collection.ts";
* import {
* assertEquals
* } from "https://deno.land/std/testing/asserts.ts";
Expand Down Expand Up @@ -699,7 +699,7 @@ export function filterEntries<T>(
* @example ```ts
* import {
* mapKeys
* } from "https://deno.land/x/911@0.0.5/src/collection.ts";
* } from "https://deno.land/x/911@0.1.0/src/collection.ts";
* import {
* assertEquals
* } from "https://deno.land/std/testing/asserts.ts";
Expand Down Expand Up @@ -734,7 +734,7 @@ export function mapKeys<T>(
* @example ```ts
* import {
* mapValues
* } from "https://deno.land/x/911@0.0.5/src/collection.ts";
* } from "https://deno.land/x/911@0.1.0/src/collection.ts";
* import {
* assertEquals
* } from "https://deno.land/std/testing/asserts.ts";
Expand Down Expand Up @@ -770,7 +770,7 @@ export function mapValues<T, O>(
* a new record containing the results.
* @category Collection
* @example ```ts
* import { mapEntries } from "https://deno.land/x/911@0.0.5/src/collection.ts";
* import { mapEntries } from "https://deno.land/x/911@0.1.0/src/collection.ts";
* import {
* assertEquals
* } from "https://deno.land/std/testing/asserts.ts";
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[
"0.1.0",
"0.0.5",
"0.0.4",
"0.0.3",
"0.0.2",
"0.0.1"
]
]

0 comments on commit dc112db

Please sign in to comment.