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.js
10 lines
(9 loc)
•
259 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
Utils
=
void
0
;
class
Utils
{
static
isNullOrEmpty
(
value
) {
return
value ===
undefined
|| value ===
null
|| value ===
""
; } }
exports
.
Utils
=
Utils
;