export const checkNull = params => { if (params != null && !params && typeof (params) != "undefined") { return true; } else { return false; } };