collect-your-stuff 1.1.1 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -517,7 +517,7 @@ TreeLinker represents a node in a LinkedTreeList having a parent (or root) and c
517
517
  * [TreeLinker](#TreeLinker) ⇐ [<code>DoubleLinker</code>](#DoubleLinker)
518
518
  * [new TreeLinker([settings])](#new_TreeLinker_new)
519
519
  * _instance_
520
- * [.childrenFromArray(children, classType)](#TreeLinker+childrenFromArray) ⇒ [<code>LinkedTreeList</code>](#LinkedTreeList) \| <code>null</code>
520
+ * [.childrenFromArray(children, classType, listType)](#TreeLinker+childrenFromArray) ⇒ [<code>LinkedTreeList</code>](#LinkedTreeList) \| <code>null</code>
521
521
  * _static_
522
522
  * [.make(linker, [classType])](#TreeLinker.make) ⇒ [<code>TreeLinker</code>](#TreeLinker)
523
523
  * [.fromArray([values], [classType])](#TreeLinker.fromArray) ⇒ <code>Object</code>
@@ -539,7 +539,7 @@ Create the new TreeLinker instance, provide the data and optionally set referenc
539
539
 
540
540
  <a name="TreeLinker+childrenFromArray"></a>
541
541
 
542
- ### treeLinker.childrenFromArray(children, classType) ⇒ [<code>LinkedTreeList</code>](#LinkedTreeList) \| <code>null</code>
542
+ ### treeLinker.childrenFromArray(children, classType, listType) ⇒ [<code>LinkedTreeList</code>](#LinkedTreeList) \| <code>null</code>
543
543
  Create the children for this tree from an array.
544
544
 
545
545
  **Kind**: instance method of [<code>TreeLinker</code>](#TreeLinker)
@@ -548,6 +548,7 @@ Create the children for this tree from an array.
548
548
  | --- | --- | --- |
549
549
  | children | <code>Array</code> \| <code>null</code> | Provide an array of data / linker references to be children of this tree node. |
550
550
  | classType | <code>IsTree</code> | Provide the type of IsElement to use. |
551
+ | listType | <code>IsArrayable.&lt;IsTree&gt;</code> | Give the type of list to use for storing the children |
551
552
 
552
553
  <a name="TreeLinker.make"></a>
553
554