chariot.js
Version:
An extremely lightweight and extensible Eris client framework
13 lines (11 loc) • 344 B
JavaScript
const Eris = require('eris');
/**
* Extremely simple customization of Eris' Collections giving the possibility to add more
* Collection methods down the road if ever needed.
*/
class Collection extends Eris.Collection {
constructor(baseObject, limit) {
super(baseObject, limit);
}
}
module.exports = Collection;