Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.js « editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af4473413f4bac43a4710c2356c0c84006797e25 (plain)
1
2
3
4
5
6
7
8
9
10
11
export const clearDomElement = (el) => {
  if (!el || !el.firstChild) return;

  while (el.firstChild) {
    el.removeChild(el.firstChild);
  }
};

export default () => ({
  clearDomElement,
});