taxtank-core 0.5.3 → 0.5.4
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 +3 -0
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/models/property/property-category.js +4 -1
- package/fesm2015/taxtank-core.js +3 -0
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/models/property/property-category.d.ts +1 -0
- package/package.json +1 -1
|
@@ -4309,6 +4309,9 @@
|
|
|
4309
4309
|
PropertyCategory.prototype.isOwnerOccupied = function () {
|
|
4310
4310
|
return this.name === 'Owner Occupied';
|
|
4311
4311
|
};
|
|
4312
|
+
PropertyCategory.prototype.isVacantLand = function () {
|
|
4313
|
+
return this.name === 'Vacant Land';
|
|
4314
|
+
};
|
|
4312
4315
|
return PropertyCategory;
|
|
4313
4316
|
}(PropertyCategory$1));
|
|
4314
4317
|
|