UNPKG

@triply/yasr

Version:

Yet Another SPARQL Resultset GUI

8 lines (7 loc) 274 B
export default function addCss(href: string) { var link = document.createElement("link"); link.setAttribute("rel", "stylesheet"); link.setAttribute("type", "text/css"); link.setAttribute("href", href); document.getElementsByTagName("head")[0].appendChild(link); }