Lines Matching defs:nullOrUndefined
99 var all, any, calculateDistance, calculateIntersection, calculatePercentage, nullOrUndefined, splitAndTrim,
159 if (nullOrUndefined(first) && nullOrUndefined(second)) {
161 } else if (nullOrUndefined(first)) {
163 } else if (nullOrUndefined(second)) {
192 return nullOrUndefined(this.penaltyPoints) || this.penaltyPoints === 0;
216 if (!nullOrUndefined(storedValue)) {
217 if (nullOrUndefined(currentValue) || currentValue !== storedValue) {
220 } else if (!nullOrUndefined(currentValue)) {
253 if (nullOrUndefined(currentValue)) {
256 if (nullOrUndefined(storedValue)) {
307 if (nullOrUndefined(storedValue) && !nullOrUndefined(currentValue)) {
371 currentValue = nullOrUndefined(currentValue) ? null : currentValue.replace(/[\d\.]+/g, "").trim();
372 storedValue = nullOrUndefined(storedValue) ? null : storedValue.replace(/[\d\.]+/g, "").trim();
492 return nullOrUndefined(location) || nullOrUndefined(location.latitude) || nullOrUndefined(location.longitude);
501 nullOrUndefined = function(value) {