File tree 6 files changed +21
-21
lines changed
6 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 14
14
15
15
- [ Usage] ( #usage )
16
16
- [ API Reference] ( #api-reference )
17
- - [ deepClone< ; T> ; (target[ , options] )] ( #deepclonelttgttarget -options )
17
+ - [ deepClone< ; T> ; (target[ , options] )] ( #deepclonettarget -options )
18
18
- [ deepCloneSync(target[ , options] )] ( #deepclonesynctarget-options )
19
19
- [ License] ( #license )
20
20
21
21
## Usage
22
22
23
23
``` ts
24
24
/** Import from GH via `denopkg` */
25
- import { deepClone } from " https://cdn.jsdelivr.net/motss/deno_mod@v0.8.1 /deep_clone/mod.ts" ;
25
+ import { deepClone } from " https://cdn.jsdelivr.net/motss/deno_mod@v0.9.0 /deep_clone/mod.ts" ;
26
26
27
27
(async () => {
28
28
const simpleObject = {
Original file line number Diff line number Diff line change 21
21
22
22
``` ts
23
23
/** Import from GH via `denopkg` */
24
- import { delayUntil } from " https://cdn.jsdelivr.net/motss/deno_mod@v0.8.1 /delay_until/mod.ts" ;
24
+ import { delayUntil } from " https://cdn.jsdelivr.net/motss/deno_mod@v0.9.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.8.1 /jsmodern/extend.ts" ;
24
- import { sum } from " https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.8.1 /jsmodern/array.ts" ;
23
+ import { extend } from " https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.9.0 /jsmodern/extend.ts" ;
24
+ import { sum } from " https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.9.0 /jsmodern/array.ts" ;
25
25
26
26
extend ({ array: [sum ] });
27
27
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
- - [ html()] ( #html )
17
- - [ htmlFragment()] ( #htmlFragment )
18
- - [ API Reference] ( #API-Reference )
15
+ - [ Usage] ( #usage )
16
+ - [ html()] ( #html )
17
+ - [ htmlFragment()] ( #htmlfragment )
18
+ - [ API Reference] ( #api-reference )
19
19
- [ html()] ( #html-1 )
20
- - [ htmlFragment()] ( #htmlFragment -1 )
21
- - [ License] ( #License )
20
+ - [ htmlFragment()] ( #htmlfragment -1 )
21
+ - [ License] ( #license )
22
22
23
23
## Usage
24
24
25
25
#### html()
26
26
27
27
``` ts
28
- import { html } from " https://cdn.jsdelivr.net/motss/deno_mod@v0.8.1 /lit_ntml/mod.ts" ;
28
+ import { html } from " https://cdn.jsdelivr.net/motss/deno_mod@v0.9.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://cdn.jsdelivr.net/motss/deno_mod@v0.8.1 /lit_ntml/mod.ts" ;
43
+ import { htmlFragment as html } from " https://cdn.jsdelivr.net/motss/deno_mod@v0.9.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 12
12
13
13
## Table of contents <!-- omit in toc -->
14
14
15
- - [ Usage] ( #Usage )
16
- - [ API Reference] ( #API-Reference )
15
+ - [ Usage] ( #usage )
16
+ - [ API Reference] ( #api-reference )
17
17
- [ normalize([ input] )] ( #normalizeinput )
18
- - [ normalizeSync([ input] )] ( #normalizeSyncinput )
19
- - [ License] ( #License )
18
+ - [ normalizeSync([ input] )] ( #normalizesyncinput )
19
+ - [ License] ( #license )
20
20
21
21
## Usage
22
22
23
23
``` ts
24
24
/** Import from GH via `denopkg` */
25
- import { normalize } from " https://cdn.jsdelivr.net/motss/deno_mod@v0.8.1 /normalize_diacritics/mod.ts" ;
25
+ import { normalize } from " https://cdn.jsdelivr.net/motss/deno_mod@v0.9.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 14
14
15
15
- [ Usage] ( #usage )
16
16
- [ API Reference] ( #api-reference )
17
- - [ OnfinishFulfilled< ; T> ; ] ( #onfinishfulfilledlttgt )
17
+ - [ OnfinishFulfilled< ; T> ; ] ( #onfinishfulfilledt )
18
18
- [ OnfinishRejected] ( #onfinishrejected )
19
19
- [ PollingMeasure] ( #pollingmeasure )
20
20
- [ Methods] ( #methods )
21
21
- [ PollingMeasure.toJSON()] ( #pollingmeasuretojson )
22
- - [ PollingObserver< ; T> ; ] ( #pollingobserverlttgt )
22
+ - [ PollingObserver< ; T> ; ] ( #pollingobservert )
23
23
- [ Methods] ( #methods-1 )
24
24
- [ PollingObserver.observe(callback[ , options] )] ( #pollingobserverobservecallback-options )
25
25
- [ PollingObserver.disconnect()] ( #pollingobserverdisconnect )
@@ -38,7 +38,7 @@ interface DataType {
38
38
items: Record <string , any >[];
39
39
}
40
40
41
- import { PollingObserver } from " https://cdn.jsdelivr.net/motss/deno_mod@v0.8.1 /polling_observer/mod.ts" ;
41
+ import { PollingObserver } from " https://cdn.jsdelivr.net/motss/deno_mod@v0.9.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