Skip to content

Instantly share code, notes, and snippets.

@peplocanto
Created February 11, 2025 12:12
Show Gist options
  • Save peplocanto/435dc2719bed4296a9005ccc76e80896 to your computer and use it in GitHub Desktop.
Save peplocanto/435dc2719bed4296a9005ccc76e80896 to your computer and use it in GitHub Desktop.
typescript existence check

Existence in Javascript (but written in Typescript)

A simple series of utility to check value existence.

function itExists(it: unknown): boolean {
  if (!hasValue(it)) return false;
  else if (Array.isArray(it)) return isArrNotEmpty(it);
  else if (typeof it === 'object') return isObjNotEmpty(it!);
  else return true;
}

function hasValue<T>(
  el: T | null | undefined
): el is Exclude<T, null | undefined | ''> {
  return el !== undefined && el !== null && el !== '';
}

function isArrNotEmpty<T>(arr: Array<T | T[] | undefined>): boolean {
  return flatten(arr).some(hasValue);
}

function isObjNotEmpty(obj: object): boolean {
  return Object.keys(obj).length > 0;
}

function flatten<T>(arr: Array<T | T[] | undefined>): (T | undefined)[] {
  return arr.reduce(
    (acc, val) =>
      Array.isArray(val) ? acc.concat(flatten(val)) : acc.concat(val),
    [] as (T | undefined)[]
  );
}

Usage

const testVar1 = '';
const testArr1 = [null, '', [null, [null]]];
const testArr2 = [null, '', '', undefined, [null, [null]]];
const testObj1 = {};
const testObj2 = {a: null};

console.log(itExists(testVar1));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment