@bizmap/sdk 0.0.87 → 0.0.88
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/main.js +1 -0
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -429,6 +429,7 @@ var normalizeCompanyId = (id) => {
|
|
|
429
429
|
var normalizeNidClass = (value) => {
|
|
430
430
|
value = nidClasses.parse(value);
|
|
431
431
|
if (value === "nin") return "National Id No.";
|
|
432
|
+
if (value === "trn") return "Tax Registration No.";
|
|
432
433
|
return camelCaseToLetter(value.replace("No", "No."));
|
|
433
434
|
};
|
|
434
435
|
|