UNPKG
bahtrext
Version:
latest (2.5.2)
2.5.2
2.5.1
2.5.0
2.4.0
2.3.4
2.3.3
2.3.2
2.3.1
2.3.0
2.2.0
2.1.0
2.0.2
2.0.1
2.0.0
1.7.2
1.7.1
1.7.0
1.6.3
1.6.2
1.6.1
1.6.0
1.5.0
1.4.7
1.4.6
1.4.5
1.4.4
1.4.3
1.4.2
1.2.3
BahtText Stringify
github.com/PingHuskar/npm-bahtrext
PingHuskar/npm-bahtrext
bahtrext
/
function
/
SatangSecondDigit.js
8 lines
(6 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{
SPECIALONE
,
THAINUMBERWORDS
}
from
"../const"
;
export
default
(digit) => {
if
(!digit[
1
] || digit[
1
] ===
"0"
)
return
""
;
if
(digit[
0
] !==
"0"
&& digit[
1
] ===
"1"
)
return
SPECIALONE
;
return
THAINUMBERWORDS
[
parseInt
(digit[
1
],
10
)]; };