Skip to content

Commit b128e45

Browse files
committed
🔖 v0.6.1
1 parent d4eecf1 commit b128e45

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

‎deep_clone/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
```ts
2424
/** Import from GH via `denopkg` */
25-
import { deepClone } from "https://denopkg.com/motss/[email protected].0/deep_clone/mod.ts";
25+
import { deepClone } from "https://denopkg.com/motss/[email protected].1/deep_clone/mod.ts";
2626

2727
(async () => {
2828
const simpleObject = {

‎delay_until/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
```ts
2323
/** Import from GH via `denopkg` */
24-
import { delayUntil } from "https://denopkg.com/motss/[email protected].0/delay_until/mod.ts";
24+
import { delayUntil } from "https://denopkg.com/motss/[email protected].1/delay_until/mod.ts";
2525

2626
(async () => {
2727
await delayUntil(3e3);

‎lit_ntml/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#### html()
2626

2727
```ts
28-
import { html } from "https://denopkg.com/motss/[email protected].0/lit_ntml/mod.ts";
28+
import { html } from "https://denopkg.com/motss/[email protected].1/lit_ntml/mod.ts";
2929

3030
const peopleList = ["Cash Black", "Vict Fisherman"];
3131
const syncTask = () => `<h1>Hello, World!</h1>`;
@@ -40,7 +40,7 @@ await html`${syncTask}${asyncLiteral}${asyncListTask}`; /** <!DOCTYPE html><html
4040
#### htmlFragment()
4141

4242
```ts
43-
import { htmlFragment as html } from "https://denopkg.com/motss/[email protected].0/lit_ntml/mod.ts";
43+
import { htmlFragment as html } from "https://denopkg.com/motss/[email protected].1/lit_ntml/mod.ts";
4444

4545
const syncTask = () => `<h1>Hello, World!</h1>`;
4646
const externalStyleLiteral = `<style>body { margin: 0; padding: 0; box-sizing: border-box; }</style>`;

‎normalize_diacritics/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
```ts
2424
/** Import from GH via `denopkg` */
25-
import { normalize } from "https://denopkg.com/motss/[email protected].0/normalize_diacritics/mod.ts";
25+
import { normalize } from "https://denopkg.com/motss/[email protected].1/normalize_diacritics/mod.ts";
2626

2727
(async () => {
2828
const str = "söme stüff with áccènts";

‎polling_observer/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ interface DataType {
3838
items: Record<string, any>[];
3939
}
4040

41-
import { PollingObserver } from 'https://denopkg.com/motss/[email protected].0/polling_observer/mod.ts';
41+
import { PollingObserver } from 'https://denopkg.com/motss/[email protected].1/polling_observer/mod.ts';
4242

4343
const obs = new PollingObserver((data/** list, observer */) => {
4444
const { status, items } = data || {};

0 commit comments

Comments
 (0)