.get() - DarthJDG/Mangler.js GitHub Wiki
Returns the item with the given index.
.get(index)| Parameter | Type | Default | Description |
|---|---|---|---|
| index | Number | The index of the item to return. |
Returns the item from the .items[ ] array, or undefined if not found.
This method provides a standard getter interface for mangler objects. If m is a mangler object, m.get(index) and m.items[index] both return the same value.