Comparing version 7.0.0 to 7.0.1
# Changelog | ||
## `7.0.1`` | ||
- One more performance improvement by optimizing `Collection#constructor` to just reset the collection | ||
## `7.0.0`` | ||
@@ -4,0 +8,0 @@ |
@@ -575,4 +575,3 @@ 'use strict'; | ||
var _this = _super.call(this) || this; | ||
_this.models = mobx.observable.array([]); | ||
_this.set(data); | ||
_this.models = mobx.observable.array(data.map(function (m) { return _this.build(m); })); | ||
return _this; | ||
@@ -579,0 +578,0 @@ } |
{ | ||
"name": "mobx-rest", | ||
"version": "7.0.0", | ||
"version": "7.0.1", | ||
"description": "REST conventions for mobx.", | ||
@@ -5,0 +5,0 @@ "jest": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
71402
1279