gitlab-org--gitlab-foss/app/assets/javascripts/editor/utils.js

12 lines
195 B
JavaScript
Raw Normal View History

export const clearDomElement = (el) => {
if (!el || !el.firstChild) return;
while (el.firstChild) {
el.removeChild(el.firstChild);
}
};
export default () => ({
clearDomElement,
});