UNPKG
ndbc-mysql
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
The ndbc connector to connect mysql database.
github.com/EircYangQM/ndbc-mysql
EircYangQM/ndbc-mysql
ndbc-mysql
/
src
/
uitls.ts
6 lines
(5 loc)
•
145 B
text/typescript
View Raw
1
2
3
4
5
6
export
class
Utils
{
static
isNullOrEmpty
(
value
:
String
):
boolean
{
return
value ===
undefined
|| value ===
null
|| value ===
""
; } }