File tree 6 files changed +12
-12
lines changed
6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 22
22
23
23
``` ts
24
24
/** Import from GH via `denopkg` */
25
- import { deepClone } from " https://denopkg.com /motss/deno_mod@v0.7.1 /deep_clone/mod.ts" ;
25
+ import { deepClone } from " https://cdn.jsdelivr.net /motss/deno_mod@v0.8.0 /deep_clone/mod.ts" ;
26
26
27
27
(async () => {
28
28
const simpleObject = {
Original file line number Diff line number Diff line change 12
12
13
13
## Table of contents <!-- omit in toc -->
14
14
15
- - [ Usage] ( #Usage )
16
- - [ API Reference] ( #API-Reference )
17
- - [ delayUntil([ delay] )] ( #delayUntildelay )
18
- - [ License] ( #License )
15
+ - [ Usage] ( #usage )
16
+ - [ API Reference] ( #api-reference )
17
+ - [ delayUntil([ delay] )] ( #delayuntildelay )
18
+ - [ License] ( #license )
19
19
20
20
## Usage
21
21
22
22
``` ts
23
23
/** Import from GH via `denopkg` */
24
- import { delayUntil } from " https://denopkg.com /motss/deno_mod@v0.7.1 /delay_until/mod.ts" ;
24
+ import { delayUntil } from " https://cdn.jsdelivr.net /motss/deno_mod@v0.8.0 /delay_until/mod.ts" ;
25
25
26
26
(async () => {
27
27
await delayUntil (3e3 );
Original file line number Diff line number Diff line change 20
20
21
21
``` ts
22
22
// It is recommended to only import those extensions you need instead of everything.
23
- import { extend } from " https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.7.1 /jsmodern/extend.ts" ;
24
- import { sum } from " https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.7.1 /jsmodern/array.ts" ;
23
+ import { extend } from " https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.8.0 /jsmodern/extend.ts" ;
24
+ import { sum } from " https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.8.0 /jsmodern/array.ts" ;
25
25
26
26
extend ({ array: [sum ] });
27
27
Original file line number Diff line number Diff line change 25
25
#### html()
26
26
27
27
``` ts
28
- import { html } from " https://denopkg.com /motss/deno_mod@v0.7.1 /lit_ntml/mod.ts" ;
28
+ import { html } from " https://cdn.jsdelivr.net /motss/deno_mod@v0.8.0 /lit_ntml/mod.ts" ;
29
29
30
30
const peopleList = [" Cash Black" , " Vict Fisherman" ];
31
31
const syncTask = () => ` <h1>Hello, World!</h1> ` ;
@@ -40,7 +40,7 @@ await html`${syncTask}${asyncLiteral}${asyncListTask}`; /** <!DOCTYPE html><html
40
40
#### htmlFragment()
41
41
42
42
``` ts
43
- import { htmlFragment as html } from " https://denopkg.com /motss/deno_mod@v0.7.1 /lit_ntml/mod.ts" ;
43
+ import { htmlFragment as html } from " https://cdn.jsdelivr.net /motss/deno_mod@v0.8.0 /lit_ntml/mod.ts" ;
44
44
45
45
const syncTask = () => ` <h1>Hello, World!</h1> ` ;
46
46
const externalStyleLiteral = ` <style>body { margin: 0; padding: 0; box-sizing: border-box; }</style> ` ;
Original file line number Diff line number Diff line change 22
22
23
23
``` ts
24
24
/** Import from GH via `denopkg` */
25
- import { normalize } from " https://denopkg.com /motss/deno_mod@v0.7.1 /normalize_diacritics/mod.ts" ;
25
+ import { normalize } from " https://cdn.jsdelivr.net /motss/deno_mod@v0.8.0 /normalize_diacritics/mod.ts" ;
26
26
27
27
(async () => {
28
28
const str = " söme stüff with áccènts" ;
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ interface DataType {
38
38
items: Record <string , any >[];
39
39
}
40
40
41
- import { PollingObserver } from " https://denopkg.com /motss/deno_mod@v0.7.1 /polling_observer/mod.ts" ;
41
+ import { PollingObserver } from " https://cdn.jsdelivr.net /motss/deno_mod@v0.8.0 /polling_observer/mod.ts" ;
42
42
43
43
const obs = new PollingObserver ((data /** list, observer */ ) => {
44
44
const { status, items } = data || {};
You can’t perform that action at this time.
0 commit comments