diff --git a/deep_clone/README.md b/deep_clone/README.md index 33e63de..9011364 100644 --- a/deep_clone/README.md +++ b/deep_clone/README.md @@ -14,7 +14,7 @@ - [Usage](#usage) - [API Reference](#api-reference) - - [deepClone<T>(target[, options])](#deepclonelttgttarget-options) + - [deepClone<T>(target[, options])](#deepclonettarget-options) - [deepCloneSync(target[, options])](#deepclonesynctarget-options) - [License](#license) @@ -22,7 +22,7 @@ ```ts /** Import from GH via `denopkg` */ -import { deepClone } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.1/deep_clone/mod.ts"; +import { deepClone } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.9.0/deep_clone/mod.ts"; (async () => { const simpleObject = { diff --git a/delay_until/README.md b/delay_until/README.md index 6aeda12..52f3fde 100644 --- a/delay_until/README.md +++ b/delay_until/README.md @@ -21,7 +21,7 @@ ```ts /** Import from GH via `denopkg` */ -import { delayUntil } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.1/delay_until/mod.ts"; +import { delayUntil } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.9.0/delay_until/mod.ts"; (async () => { await delayUntil(3e3); diff --git a/jsmodern/README.md b/jsmodern/README.md index 1dfc1a5..f94e6af 100644 --- a/jsmodern/README.md +++ b/jsmodern/README.md @@ -20,8 +20,8 @@ ```ts // It is recommended to only import those extensions you need instead of everything. -import { extend } from "https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.8.1/jsmodern/extend.ts"; -import { sum } from "https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.8.1/jsmodern/array.ts"; +import { extend } from "https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.9.0/jsmodern/extend.ts"; +import { sum } from "https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.9.0/jsmodern/array.ts"; extend({ array: [sum] }); diff --git a/lit_ntml/README.md b/lit_ntml/README.md index f86c1f4..d4b7673 100644 --- a/lit_ntml/README.md +++ b/lit_ntml/README.md @@ -12,20 +12,20 @@ ## Table of contents -- [Usage](#Usage) - - [html()](#html) - - [htmlFragment()](#htmlFragment) -- [API Reference](#API-Reference) +- [Usage](#usage) + - [html()](#html) + - [htmlFragment()](#htmlfragment) +- [API Reference](#api-reference) - [html()](#html-1) - - [htmlFragment()](#htmlFragment-1) -- [License](#License) + - [htmlFragment()](#htmlfragment-1) +- [License](#license) ## Usage #### html() ```ts -import { html } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.1/lit_ntml/mod.ts"; +import { html } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.9.0/lit_ntml/mod.ts"; const peopleList = ["Cash Black", "Vict Fisherman"]; const syncTask = () => `

Hello, World!

`; @@ -40,7 +40,7 @@ await html`${syncTask}${asyncLiteral}${asyncListTask}`; /** `

Hello, World!

`; const externalStyleLiteral = ``; diff --git a/normalize_diacritics/README.md b/normalize_diacritics/README.md index 0bb72ba..b68773f 100644 --- a/normalize_diacritics/README.md +++ b/normalize_diacritics/README.md @@ -12,17 +12,17 @@ ## Table of contents -- [Usage](#Usage) -- [API Reference](#API-Reference) +- [Usage](#usage) +- [API Reference](#api-reference) - [normalize([input])](#normalizeinput) - - [normalizeSync([input])](#normalizeSyncinput) -- [License](#License) + - [normalizeSync([input])](#normalizesyncinput) +- [License](#license) ## Usage ```ts /** Import from GH via `denopkg` */ -import { normalize } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.1/normalize_diacritics/mod.ts"; +import { normalize } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.9.0/normalize_diacritics/mod.ts"; (async () => { const str = "söme stüff with áccènts"; diff --git a/polling_observer/README.md b/polling_observer/README.md index ed598b5..3c5af4e 100644 --- a/polling_observer/README.md +++ b/polling_observer/README.md @@ -14,12 +14,12 @@ - [Usage](#usage) - [API Reference](#api-reference) - - [OnfinishFulfilled<T>](#onfinishfulfilledlttgt) + - [OnfinishFulfilled<T>](#onfinishfulfilledt) - [OnfinishRejected](#onfinishrejected) - [PollingMeasure](#pollingmeasure) - [Methods](#methods) - [PollingMeasure.toJSON()](#pollingmeasuretojson) - - [PollingObserver<T>](#pollingobserverlttgt) + - [PollingObserver<T>](#pollingobservert) - [Methods](#methods-1) - [PollingObserver.observe(callback[, options])](#pollingobserverobservecallback-options) - [PollingObserver.disconnect()](#pollingobserverdisconnect) @@ -38,7 +38,7 @@ interface DataType { items: Record[]; } -import { PollingObserver } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.1/polling_observer/mod.ts"; +import { PollingObserver } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.9.0/polling_observer/mod.ts"; const obs = new PollingObserver((data /** list, observer */) => { const { status, items } = data || {};