Skip to content

Commit

Permalink
🔖 v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
motss committed Jun 20, 2019
1 parent a0d2fe6 commit 65ea1eb
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 35 deletions.
12 changes: 6 additions & 6 deletions deep_clone/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
## Table of contents <!-- omit in toc -->

- [Usage](#usage)
- [API Reference](#api-reference)
- [deepClone&lt;T&gt;(target[, options])](#deepclonelttgttarget-options)
- [deepCloneSync(target[, options])](#deepclonesynctarget-options)
- [License](#license)
- [Usage](#Usage)
- [API Reference](#API-Reference)
- [deepClone&lt;T&gt;(target[, options])](#deepCloneltTgttarget-options)
- [deepCloneSync(target[, options])](#deepCloneSynctarget-options)
- [License](#License)

## Usage

```ts
/** Import from GH via `denopkg` */
import { deepClone } from "https://denopkg.com/motss/deno_mod@v0.5.0/deep_clone/mod.ts";
import { deepClone } from "https://denopkg.com/motss/deno_mod@v0.6.0/deep_clone/mod.ts";

(async () => {
const simpleObject = {
Expand Down
14 changes: 7 additions & 7 deletions lit_ntml/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@
## Table of contents <!-- omit in toc -->

- [Usage](#usage)
- [Usage](#Usage)
- [html()](#html)
- [htmlFragment()](#htmlfragment)
- [API Reference](#api-reference)
- [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://denopkg.com/motss/deno_mod@v0.5.0/lit_ntml/mod.ts";
import { html } from "https://denopkg.com/motss/deno_mod@v0.6.0/lit_ntml/mod.ts";

const peopleList = ["Cash Black", "Vict Fisherman"];
const syncTask = () => `<h1>Hello, World!</h1>`;
Expand All @@ -40,7 +40,7 @@ await html`${syncTask}${asyncLiteral}${asyncListTask}`; /** <!DOCTYPE html><html
#### htmlFragment()

```ts
import { htmlFragment as html } from "https://denopkg.com/motss/deno_mod@v0.5.0/lit_ntml/mod.ts";
import { htmlFragment as html } from "https://denopkg.com/motss/deno_mod@v0.6.0/lit_ntml/mod.ts";

const syncTask = () => `<h1>Hello, World!</h1>`;
const externalStyleLiteral = `<style>body { margin: 0; padding: 0; box-sizing: border-box; }</style>`;
Expand Down
10 changes: 5 additions & 5 deletions normalize_diacritics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
## Table of contents <!-- omit in toc -->

- [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://denopkg.com/motss/deno_mod@v0.5.0/normalize_diacritics/mod.ts";
import { normalize } from "https://denopkg.com/motss/deno_mod@v0.6.0/normalize_diacritics/mod.ts";

(async () => {
const str = "söme stüff with áccènts";
Expand Down
34 changes: 17 additions & 17 deletions polling_observer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@
## Table of contents <!-- omit in toc -->

- [Usage](#usage)
- [API Reference](#api-reference)
- [OnfinishFulfilled&lt;T&gt;](#onfinishfulfilledlttgt)
- [OnfinishRejected](#onfinishrejected)
- [PollingMeasure](#pollingmeasure)
- [Methods](#methods)
- [PollingMeasure.toJSON()](#pollingmeasuretojson)
- [PollingObserver&lt;T&gt;](#pollingobserverlttgt)
- [Methods](#methods-1)
- [PollingObserver.observe(callback[, options])](#pollingobserverobservecallback-options)
- [PollingObserver.disconnect()](#pollingobserverdisconnect)
- [PollingObserver.takeRecords()](#pollingobservertakerecords)
- [Event handler](#event-handler)
- [PollingObserver.onfinish](#pollingobserveronfinish)
- [Events](#events)
- [Usage](#Usage)
- [API Reference](#API-Reference)
- [OnfinishFulfilled&lt;T&gt;](#OnfinishFulfilledltTgt)
- [OnfinishRejected](#OnfinishRejected)
- [PollingMeasure](#PollingMeasure)
- [Methods](#Methods)
- [PollingMeasure.toJSON()](#PollingMeasuretoJSON)
- [PollingObserver&lt;T&gt;](#PollingObserverltTgt)
- [Methods](#Methods-1)
- [PollingObserver.observe(callback[, options])](#PollingObserverobservecallback-options)
- [PollingObserver.disconnect()](#PollingObserverdisconnect)
- [PollingObserver.takeRecords()](#PollingObservertakeRecords)
- [Event handler](#Event-handler)
- [PollingObserver.onfinish](#PollingObserveronfinish)
- [Events](#Events)
- [finish](#finish)
- [License](#license)
- [License](#License)

## Usage

Expand All @@ -38,7 +38,7 @@ interface DataType {
items: Record<string, any>[];
}

import { PollingObserver } from 'https://denopkg.com/motss/deno_mod@v0.5.0/polling_observer/mod.ts';
import { PollingObserver } from 'https://denopkg.com/motss/deno_mod@v0.6.0/polling_observer/mod.ts';

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

0 comments on commit 65ea1eb

Please sign in to comment.