Skip to content

Commit 83f1d40

Browse files
committed
v0.7.1
1 parent c5c826e commit 83f1d40

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
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);

jsmodern/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
```ts
2222
// It is recommended to only import those extensions you need instead of everything.
23-
import { extend } from "https://cdn.jsdelivr.net/gh/motss/[email protected].0/jsmodern/extend.ts";
24-
import { sum } from "https://cdn.jsdelivr.net/gh/motss/[email protected].0/jsmodern/array.ts";
23+
import { extend } from "https://cdn.jsdelivr.net/gh/motss/[email protected].1/jsmodern/extend.ts";
24+
import { sum } from "https://cdn.jsdelivr.net/gh/motss/[email protected].1/jsmodern/array.ts";
2525

2626
extend({ array: [sum] });
2727

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)