diff --git a/deep_clone/README.md b/deep_clone/README.md index 694049f..476093e 100644 --- a/deep_clone/README.md +++ b/deep_clone/README.md @@ -22,7 +22,7 @@ ```ts /** Import from GH via `denopkg` */ -import { deepClone } from "https://denopkg.com/motss/deno_mod@v0.7.1/deep_clone/mod.ts"; +import { deepClone } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.0/deep_clone/mod.ts"; (async () => { const simpleObject = { diff --git a/delay_until/README.md b/delay_until/README.md index c3e6e55..e65352e 100644 --- a/delay_until/README.md +++ b/delay_until/README.md @@ -12,16 +12,16 @@ ## Table of contents -- [Usage](#Usage) -- [API Reference](#API-Reference) - - [delayUntil([delay])](#delayUntildelay) -- [License](#License) +- [Usage](#usage) +- [API Reference](#api-reference) + - [delayUntil([delay])](#delayuntildelay) +- [License](#license) ## Usage ```ts /** Import from GH via `denopkg` */ -import { delayUntil } from "https://denopkg.com/motss/deno_mod@v0.7.1/delay_until/mod.ts"; +import { delayUntil } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.0/delay_until/mod.ts"; (async () => { await delayUntil(3e3); diff --git a/jsmodern/README.md b/jsmodern/README.md index bd5407b..a242335 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.7.1/jsmodern/extend.ts"; -import { sum } from "https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.7.1/jsmodern/array.ts"; +import { extend } from "https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.8.0/jsmodern/extend.ts"; +import { sum } from "https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.8.0/jsmodern/array.ts"; extend({ array: [sum] }); diff --git a/lit_ntml/README.md b/lit_ntml/README.md index 6c4babe..20f703a 100644 --- a/lit_ntml/README.md +++ b/lit_ntml/README.md @@ -25,7 +25,7 @@ #### html() ```ts -import { html } from "https://denopkg.com/motss/deno_mod@v0.7.1/lit_ntml/mod.ts"; +import { html } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.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 1915a45..fce636d 100644 --- a/normalize_diacritics/README.md +++ b/normalize_diacritics/README.md @@ -22,7 +22,7 @@ ```ts /** Import from GH via `denopkg` */ -import { normalize } from "https://denopkg.com/motss/deno_mod@v0.7.1/normalize_diacritics/mod.ts"; +import { normalize } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.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 7910835..7a6bb2b 100644 --- a/polling_observer/README.md +++ b/polling_observer/README.md @@ -38,7 +38,7 @@ interface DataType { items: Record[]; } -import { PollingObserver } from "https://denopkg.com/motss/deno_mod@v0.7.1/polling_observer/mod.ts"; +import { PollingObserver } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.0/polling_observer/mod.ts"; const obs = new PollingObserver((data /** list, observer */) => { const { status, items } = data || {};