Skip to content

Commit b7521eb

Browse files
committed
0.9.0
1 parent 1e53118 commit b7521eb

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

deep_clone/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414

1515
- [Usage](#usage)
1616
- [API Reference](#api-reference)
17-
- [deepClone<T>(target[, options])](#deepclonelttgttarget-options)
17+
- [deepClone<T>(target[, options])](#deepclonettarget-options)
1818
- [deepCloneSync(target[, options])](#deepclonesynctarget-options)
1919
- [License](#license)
2020

2121
## Usage
2222

2323
```ts
2424
/** 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";
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://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";
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/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";
2525

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

lit_ntml/README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@
1212
1313
## Table of contents <!-- omit in toc -->
1414

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)
1919
- [html()](#html-1)
20-
- [htmlFragment()](#htmlFragment-1)
21-
- [License](#License)
20+
- [htmlFragment()](#htmlfragment-1)
21+
- [License](#license)
2222

2323
## Usage
2424

2525
#### html()
2626

2727
```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";
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://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";
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

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
1313
## Table of contents <!-- omit in toc -->
1414

15-
- [Usage](#Usage)
16-
- [API Reference](#API-Reference)
15+
- [Usage](#usage)
16+
- [API Reference](#api-reference)
1717
- [normalize([input])](#normalizeinput)
18-
- [normalizeSync([input])](#normalizeSyncinput)
19-
- [License](#License)
18+
- [normalizeSync([input])](#normalizesyncinput)
19+
- [License](#license)
2020

2121
## Usage
2222

2323
```ts
2424
/** 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";
2626

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

polling_observer/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414

1515
- [Usage](#usage)
1616
- [API Reference](#api-reference)
17-
- [OnfinishFulfilled&lt;T&gt;](#onfinishfulfilledlttgt)
17+
- [OnfinishFulfilled&lt;T&gt;](#onfinishfulfilledt)
1818
- [OnfinishRejected](#onfinishrejected)
1919
- [PollingMeasure](#pollingmeasure)
2020
- [Methods](#methods)
2121
- [PollingMeasure.toJSON()](#pollingmeasuretojson)
22-
- [PollingObserver&lt;T&gt;](#pollingobserverlttgt)
22+
- [PollingObserver&lt;T&gt;](#pollingobservert)
2323
- [Methods](#methods-1)
2424
- [PollingObserver.observe(callback[, options])](#pollingobserverobservecallback-options)
2525
- [PollingObserver.disconnect()](#pollingobserverdisconnect)
@@ -38,7 +38,7 @@ interface DataType {
3838
items: Record<string, any>[];
3939
}
4040

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";
4242

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

0 commit comments

Comments
 (0)