canvas-editor-engine 2.3.36 → 2.3.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
@@ -2599,6 +2599,8 @@ var DrawAccumulatorService = function() {
|
|
2599
2599
|
deleteProperty: function(target, prop) {
|
2600
2600
|
if (prop in target) {
|
2601
2601
|
delete target[prop];
|
2602
|
+
target.length--;
|
2603
|
+
console.log("from:", target);
|
2602
2604
|
console.log("property removed: ".concat(prop));
|
2603
2605
|
return true;
|
2604
2606
|
}
|