const isNull = function (value: any): value is null {
  return value === null;
};

export {
  isNull
};
