Skip to content

Instantly share code, notes, and snippets.

@qkreltms
Created February 12, 2021 12:24
Show Gist options
  • Select an option

  • Save qkreltms/4b3be68896bfce6c2f3d011e6fead2d0 to your computer and use it in GitHub Desktop.

Select an option

Save qkreltms/4b3be68896bfce6c2f3d011e6fead2d0 to your computer and use it in GitHub Desktop.
export const destroyFns: Array<() => void> = [];

export const destroyAll = () => {
  while (destroyFns.length) {
    const close = destroyFns.pop();
    if (close) {
      close();
    }
  }
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment