@vinder/vinderjs
Version:
JS utilities used by Vinder Media Engineering
14 lines (11 loc) • 377 B
JavaScript
import { dom } from '@fortawesome/fontawesome-svg-core';
/*
* https://github.com/FortAwesome/Font-Awesome/blob/master/UPGRADING.md
* Kicks off the process of finding <i> tags and replacing with <svg>
*
* Call this function to render icons in HTML.
*/
function domWatch() { /* eslint-disable-line import/prefer-default-export */
dom.watch();
}
export default domWatch;