UNPKG
@rr0/common
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
0.1.10
0.1.9
0.1.8
0.1.7
0.1.6
0.1.5
0.1.4
Common and utility classes
github.com/RR0/common
RR0/common
@rr0/common
/
dist
/
util
/
StringUtils.js
7 lines
•
242 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
{
ObjectUtils
}
from
"./ObjectUtils.js"
;
export
class
StringUtils
{
static
toString
(
x
) {
return
ObjectUtils
.
isDefined
(x) ?
typeof
x ===
'string'
?
`"
${x}
"`
: x.
toString
() : x; } }
//# sourceMappingURL=StringUtils.js.map