Skip to content

Instantly share code, notes, and snippets.

@hubgit
Last active November 17, 2020 13:49
Show Gist options
  • Select an option

  • Save hubgit/c62eef2e5ee1b0688f79b3ebeb831c3f to your computer and use it in GitHub Desktop.

Select an option

Save hubgit/c62eef2e5ee1b0688f79b3ebeb831c3f to your computer and use it in GitHub Desktop.
const parseTextContent = (element, selector) => element.querySelector(selector)?.textContent ?? undefined
const parseTextContent = (
element: Element,
selector: string
): string | undefined =>
element.querySelector(selector)?.textContent ?? undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment