export function nullishConfig(propertyNullishValues: INullish): INullish {
  if (!checkIsObjectLike(propertyNullishValues)) {
    throw new TypeError("'Defaults' should be an object");
  }
  return propertyNullishValues;