UNPKG
eslint-plugin-codelyzer
Version:
latest (0.0.1-alpha.12)
0.0.1-alpha.12
0.0.1-alpha.5
eslint-plugin-codelyzer
/
util
/
isNotNullOrUndefined.js
4 lines
(3 loc)
•
176 B
JavaScript
View Raw
1
2
3
4
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
isNotNullOrUndefined
=
function
(
input
) {
return
input !==
null
&& input !==
undefined
; };