﻿var njs;
if (!njs) njs = {};

njs.Asserter = {};

njs.Asserter.IsNullOrEmpty = function(candidate) {
    return (candidate === null) || (candidate === undefined) || (candidate === "");
}