Files
30-seconds-of-code/test/insertBefore/insertBefore.js
2018-08-02 13:49:33 +03:00

3 lines
122 B
JavaScript

const insertBefore = (el, htmlString) => el.insertAdjacentHTML('beforebegin', htmlString);
module.exports = insertBefore;