Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
setup: function (params) {
// If there was a plain object passed to the List constructor,
// we use those as parameters for an initial findAll.
if (isPlainObject(params) && !Array.isArray(params)) {
CanList.prototype.setup.apply(this);
this.replace(canReflect.isPromise(params) ? params : this.constructor.Map.findAll(params));
} else {
// Otherwise, set up the list like normal.
CanList.prototype.setup.apply(this, arguments);
}
this._init = 1;
this.bind('destroyed', this._destroyed.bind(this));
delete this._init;
},
_destroyed: function (ev, attr) {