Skip to content

Commit 35e25c6

Browse files
author
Steve Thompson
committed
more changes to README
1 parent 262e262 commit 35e25c6

File tree

1 file changed

+27
-26
lines changed

1 file changed

+27
-26
lines changed

README.md

Lines changed: 27 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -45,22 +45,22 @@ getPublicArray(array = []): PublicArray
4545

4646
## Properties
4747

48-
### data: any[] (read-writable)
49-
##### This is the array to be operated on.
48+
#### data: any[] (read-writable)
49+
###### This is the array to be operated on.
5050

51-
### copy: PublicArray (read-only)
52-
##### an independent copy of the PublicArray instance
51+
#### copy: PublicArray (read-only)
52+
###### an independent copy of the PublicArray instance
5353

54-
### length: number (read-writable)
55-
##### length of array
54+
#### length: number (read-writable)
55+
###### length of array
5656

57-
### isEmpty: boolean (read-only)
58-
##### true if this.data is empty
57+
#### isEmpty: boolean (read-only)
58+
###### true if this.data is empty
5959

60-
### notEmpty: boolean (read-only)
60+
#### notEmpty: boolean (read-only)
6161

62-
### filter: PublicArrayFilter (read-only)
63-
##### Has methods that narrow down the content of the array and return the PublicArrayFilter instance:
62+
#### filter: PublicArrayFilter (read-only)
63+
###### Has methods that narrow down the content of the array and return the PublicArrayFilter instance:
6464
<details>
6565
<summary>view methods</summary>
6666

@@ -76,8 +76,9 @@ filter.byType(
7676
</details>
7777

7878

79-
### getConverted: PublicArrayGetterConverter (read-only)
80-
##### Has the Array methods .map() and .reduce() , but renamed to .each() and .toOne() , respectively. None of them modify the array.
79+
#### getConverted: PublicArrayGetterConverter (read-only)
80+
###### Has the Array methods .map() and .reduce() , but renamed to .each() and .toOne() ,
81+
respectively. None of them modify the array.
8182
<details>
8283
<summary>view methods</summary>
8384

@@ -92,8 +93,8 @@ getConverted.each(mappingFunction: ((item, index?, array?) => any)): any[]
9293
```
9394
</details>
9495

95-
### get: PublicArrayGetter (read-only)
96-
##### Has methods that return items copied from the array. None of them modify the array.
96+
#### get: PublicArrayGetter (read-only)
97+
###### Has methods that return items copied from the array. None of them modify the array.
9798
<details>
9899
<summary>view methods</summary>
99100

@@ -174,8 +175,8 @@ get.byType(
174175
</details>
175176

176177

177-
### getAndRemove: PublicArrayGetterRemover (read-only)
178-
##### Has methods that both remove and return items from the array:
178+
#### getAndRemove: PublicArrayGetterRemover (read-only)
179+
###### Has methods that both remove and return items from the array:
179180
<details>
180181
<summary>view methods</summary>
181182

@@ -251,8 +252,8 @@ getAndRemove.byType(
251252
</details>
252253

253254

254-
### insert: PublicArrayInserter (read-only)
255-
##### Has methods that increase the length of the array and return the PublicArrayInserter instance:
255+
#### insert: PublicArrayInserter (read-only)
256+
###### Has methods that increase the length of the array and return the PublicArrayInserter instance:
256257
<details>
257258
<summary>view methods</summary>
258259

@@ -269,8 +270,8 @@ insert.middle(values: any[], offset = 0): PublicArrayInserter
269270
</details>
270271

271272

272-
### remove: PublicArrayRemover (read-only)
273-
##### Has methods that all remove items from the array and return the PublicArrayRemover instance:
273+
#### remove: PublicArrayRemover (read-only)
274+
###### Has methods that all remove items from the array and return the PublicArrayRemover instance:
274275
<details>
275276
<summary>view methods</summary>
276277

@@ -353,8 +354,8 @@ remove.byType(
353354
</details>
354355

355356

356-
### replace: PublicArrayReplacer (read-only)
357-
##### Has methods that all replace items in the array and return the PublicArrayReplacer instance:
357+
#### replace: PublicArrayReplacer (read-only)
358+
###### Has methods that all replace items in the array and return the PublicArrayReplacer instance:
358359
<details>
359360
<summary>view methods</summary>
360361

@@ -428,8 +429,8 @@ replace.allWithOne(values: any[], newValue): PublicArrayReplacer
428429
</details>
429430

430431

431-
### sort: PublicArraySorter (read-only)
432-
##### Has methods that change the order of the items and return the PublicArraySorter instance:
432+
#### sort: PublicArraySorter (read-only)
433+
###### Has methods that change the order of the items and return the PublicArraySorter instance:
433434
<details>
434435
<summary>view methods</summary>
435436

@@ -451,7 +452,7 @@ sort.shuffle(): PublicArraySorter;
451452
</details>
452453

453454

454-
### className: string (read-only)
455+
#### className: string (read-only)
455456

456457

457458
## Methods

0 commit comments

Comments
 (0)