taxtank-core 0.23.4 → 0.23.5
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/bundles/taxtank-core.umd.js +7 -3
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/collections/collection-dictionary.js +2 -2
- package/fesm2015/taxtank-core.js +1 -1
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/collections/collection-dictionary.d.ts +1 -1
- package/package.json +1 -1
|
@@ -4479,9 +4479,13 @@
|
|
|
4479
4479
|
if (items === void 0) { items = []; }
|
|
4480
4480
|
return new this.collectionConstructor(items);
|
|
4481
4481
|
};
|
|
4482
|
-
CollectionDictionary.prototype
|
|
4483
|
-
|
|
4484
|
-
|
|
4482
|
+
Object.defineProperty(CollectionDictionary.prototype, "length", {
|
|
4483
|
+
get: function () {
|
|
4484
|
+
return this.keys.length;
|
|
4485
|
+
},
|
|
4486
|
+
enumerable: false,
|
|
4487
|
+
configurable: true
|
|
4488
|
+
});
|
|
4485
4489
|
/**
|
|
4486
4490
|
* @Todo find a better solution to get list of the sorted keys
|
|
4487
4491
|
* Get array of the "keys" by provided order
|