UNPKG

tricks

Version:
10 lines (9 loc) 173 B
// Insert After export default (el, ref) => { if (ref.nextSibling) { ref.parentNode.insertBefore(el, ref.nextSibling); } else { ref.parentNode.appendChild(el); } };