/**
* Returns true of a given parameter is not null and not undefined.
* @param any any input is feasible
* @return {boolean} true if defined, otherwise false
*/
export const exists = any => any !== null && typeof any !== 'undefined'
/**
* Returns true of a given parameter is not null and not undefined.
* @param any any input is feasible
* @return {boolean} true if defined, otherwise false
*/
export const exists = any => any !== null && typeof any !== 'undefined'