b2m-utils 0.0.131 → 0.0.132
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/build/functions/getNormalizedCityName/index.d.ts +1 -0
- package/build/functions/index.d.ts +1 -0
- package/build/index.esm.js +5 -1
- package/build/index.esm.js.gz +0 -0
- package/build/index.esm.js.map +1 -1
- package/build/index.js +5 -0
- package/build/index.js.gz +0 -0
- package/build/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const getNormalizedCityName: (name: string) => string;
|
package/build/index.esm.js
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
var getNormalizedCityName = function (name) {
|
|
2
|
+
return name.normalize("NFD").replace(/[\u0300-\u036f]/g, "");
|
|
3
|
+
};
|
|
4
|
+
|
|
1
5
|
/**
|
|
2
6
|
* @name toDate
|
|
3
7
|
* @category Common Helpers
|
|
@@ -6458,5 +6462,5 @@ var setFormattedDatesInObjects = function (objectFormat) { return __awaiter(void
|
|
|
6458
6462
|
});
|
|
6459
6463
|
}); };
|
|
6460
6464
|
|
|
6461
|
-
export { ApplicationColumnNameEnum, ApplicationEnum, CountryEnum, CurrencyEnum, DocumentTypeEnum, DomainConfigurationEnum, DomainTypeEnum, FeeCalculationTypeEnum, FeeCategoryEnum, FreightRegionEnum, ModalEnum, NotificationTypeEnum, PermissionEnum, SlaRegionEnum, SpotStatusEnum, TrackProcessProviderTypeEnum, formatDateString, getConfigurationFromDomain, getContractFromFreight, getContractRouteFromFreight, getCookies, getDataFromToken, getFormattedFreightPlaceName, getRouteDeliveryTimeFromFreight, getRouteOnTimeFromFreight, setFormattedDatesInObjects };
|
|
6465
|
+
export { ApplicationColumnNameEnum, ApplicationEnum, CountryEnum, CurrencyEnum, DocumentTypeEnum, DomainConfigurationEnum, DomainTypeEnum, FeeCalculationTypeEnum, FeeCategoryEnum, FreightRegionEnum, ModalEnum, NotificationTypeEnum, PermissionEnum, SlaRegionEnum, SpotStatusEnum, TrackProcessProviderTypeEnum, formatDateString, getConfigurationFromDomain, getContractFromFreight, getContractRouteFromFreight, getCookies, getDataFromToken, getFormattedFreightPlaceName, getNormalizedCityName, getRouteDeliveryTimeFromFreight, getRouteOnTimeFromFreight, setFormattedDatesInObjects };
|
|
6462
6466
|
//# sourceMappingURL=index.esm.js.map
|
package/build/index.esm.js.gz
CHANGED
|
Binary file
|