Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2020-05-06 14:59:55 +03:00
parent 98aa84ee9f
commit 4c3505c735

View File

@ -433,9 +433,13 @@ var myArray = object.Constructor('myArray', Array, {
## Components
Note that all of the bellow are generic and will work on any JavaScript
object, e.g. `object.makeRawInstance(null, Array, 'a', 'b', 'c')` will
happily produce `['a', 'b', 'c']` and so on...
Note that all of the following are generic and will work on any relevant
JavaScript object.
For example this will happily create and array `['a', 'b', 'c']`...
```javascript
var l = object.makeRawInstance(null, Array, 'a', 'b', 'c')
```
### `sources(..)`