@pdg/react-table 1.0.73 → 1.0.74

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.esm.js CHANGED
@@ -2793,7 +2793,7 @@ function typographyColorToSxColor(color) {
2793
2793
  * @returns 하이픈이 추가된 사업자등록번호
2794
2794
  * ******************************************************************************************************************/
2795
2795
  function companyNoAutoDash(companyNo) {
2796
- var str = companyNo.replace(/[^0-9]/g, '');
2796
+ var str = companyNo.replace(/[^0-9*]/g, '');
2797
2797
  var values = [str.slice(0, 3)];
2798
2798
  if (str.length > 3)
2799
2799
  values.push(str.slice(3, 5));
@@ -2806,7 +2806,7 @@ function companyNoAutoDash(companyNo) {
2806
2806
  * @returns 하이픈 추가된 주민등록번호
2807
2807
  * ******************************************************************************************************************/
2808
2808
  function personalNoAutoDash(personalNo) {
2809
- var str = personalNo.replace(/[^0-9]/g, '');
2809
+ var str = personalNo.replace(/[^0-9*]/g, '');
2810
2810
  var values = [str.slice(0, 6)];
2811
2811
  if (str.length > 6)
2812
2812
  values.push(str.slice(6));