Skip to content

Commit bf387c6

Browse files
author
Marek Rozmus
authored
Merge pull request #80 from sandstreamdev/update_dependencies_17_08_2020
Update dev dependencies
2 parents 4691614 + 7c58a96 commit bf387c6

File tree

12 files changed

+4270
-2567
lines changed

12 files changed

+4270
-2567
lines changed

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1539,7 +1539,11 @@ Runs the given tasks in a sequence.
15391539

15401540
<!-- prettier-ignore-start -->
15411541
```typescript
1542-
(tasks: (() => Promise<any>)[]) => Promise<any[]>
1542+
(
1543+
tasks: {
1544+
(): Promise<any>;
1545+
}[]
1546+
) => Promise<any[]>
15431547
```
15441548
<!-- prettier-ignore-end -->
15451549

@@ -2430,7 +2434,11 @@ Asserts given conditions.
24302434
```typescript
24312435
(
24322436
condition: boolean,
2433-
callbackOrMessage: string | (() => void)
2437+
callbackOrMessage:
2438+
| {
2439+
(): void;
2440+
}
2441+
| string
24342442
) => void
24352443
```
24362444
<!-- prettier-ignore-end -->
@@ -3746,7 +3754,7 @@ Calculates the median of the values. If there is an even number of items, the av
37463754

37473755
<!-- prettier-ignore-start -->
37483756
```typescript
3749-
(xs?: number[]) => number
3757+
(xs?: number[]) => number | undefined
37503758
```
37513759
<!-- prettier-ignore-end -->
37523760

async/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,11 @@ Runs the given tasks in a sequence.
6666

6767
<!-- prettier-ignore-start -->
6868
```typescript
69-
(tasks: (() => Promise<any>)[]) => Promise<any[]>
69+
(
70+
tasks: {
71+
(): Promise<any>;
72+
}[]
73+
) => Promise<any[]>
7074
```
7175
<!-- prettier-ignore-end -->
7276

async/sequence.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sequence",
33
"description": "Runs the given tasks in a sequence.",
4-
"signature": "(tasks: (() => Promise<any>)[]) => Promise<any[]>",
4+
"signature": "(\n tasks: {\n (): Promise<any>;\n }[]\n) => Promise<any[]>",
55
"examples": [
66
{
77
"language": "javascript",

async/sequence.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ Runs the given tasks in a sequence.
66

77
<!-- prettier-ignore-start -->
88
```typescript
9-
(tasks: (() => Promise<any>)[]) => Promise<any[]>
9+
(
10+
tasks: {
11+
(): Promise<any>;
12+
}[]
13+
) => Promise<any[]>
1014
```
1115
<!-- prettier-ignore-end -->
1216

debug/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ Asserts given conditions.
88
```typescript
99
(
1010
condition: boolean,
11-
callbackOrMessage: string | (() => void)
11+
callbackOrMessage:
12+
| {
13+
(): void;
14+
}
15+
| string
1216
) => void
1317
```
1418
<!-- prettier-ignore-end -->

debug/assert.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "assert",
33
"description": "Asserts given conditions.",
4-
"signature": "(\n condition: boolean,\n callbackOrMessage: string | (() => void)\n) => void",
4+
"signature": "(\n condition: boolean,\n callbackOrMessage:\n | {\n (): void;\n }\n | string\n) => void",
55
"examples": [
66
{
77
"language": "javascript",

debug/assert.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ Asserts given conditions.
88
```typescript
99
(
1010
condition: boolean,
11-
callbackOrMessage: string | (() => void)
11+
callbackOrMessage:
12+
| {
13+
(): void;
14+
}
15+
| string
1216
) => void
1317
```
1418
<!-- prettier-ignore-end -->

math/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ Calculates the median of the values. If there is an even number of items, the av
307307

308308
<!-- prettier-ignore-start -->
309309
```typescript
310-
(xs?: number[]) => number
310+
(xs?: number[]) => number | undefined
311311
```
312312
<!-- prettier-ignore-end -->
313313

math/median.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "median",
33
"description": "Calculates the median of the values. If there is an even number of items, the average of the middle ones is returned.",
4-
"signature": "(xs?: number[]) => number",
4+
"signature": "(xs?: number[]) => number | undefined",
55
"examples": [
66
{
77
"language": "javascript",

math/median.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Calculates the median of the values. If there is an even number of items, the av
66

77
<!-- prettier-ignore-start -->
88
```typescript
9-
(xs?: number[]) => number
9+
(xs?: number[]) => number | undefined
1010
```
1111
<!-- prettier-ignore-end -->
1212

0 commit comments

Comments
 (0)