UNPKG
xliff-generator
Version:
beta.1 (1.0.0)
latest (1.0.0-beta.0)
1.0.0-beta.0
A simple module to create xliff files
github.com/markusblasek/node-xliff-generator
xliff-generator
/
src
/
utils
/
string-util.ts
8 lines
(6 loc)
•
224 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
export
class
StringUtil
{
public
static
isOnlyWhiteSpaces
(
value
:
string
):
boolean
{
return
!
this
.
regexIsOnlyWhiteSpaces
.
test
(value); }
private
static
regexIsOnlyWhiteSpaces
:
RegExp
=
new
RegExp
(
/\S/
); }