#Collection
DESCRIPTION

General
Installation
npm install eden-collection
Usage
var collection = require('eden-collection');
Methods
add
this add(Object);
Adds a row to the collection
Parameters
Returns
this
Example
Code
collection().add();
Outputs
RESULTS
cut
this cut(String);
Cut the element from the array based on the idnex
Parameters
Returns
this
Example
Code
collection().cut();
Outputs
RESULTS
each
this each(Function);
Loops through returned result sets
Parameters
Returns
this
Example
Code
collection().each();
Outputs
RESULTS
get
array get();
Returns the row array
Parameters
Returns
array
Example
Code
collection().get();
Outputs
RESULTS
set
this set();
Sets data
Parameters
Returns
this
Example
Code
collection().set();
Outputs
RESULTS