UNPKG
link-css
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
insert a link of css into the <head>
github.com/undoZen/link-css
undoZen/link-css
link-css
/
example
/
insert.js
6 lines
(5 loc)
•
198 B
JavaScript
View Raw
1
2
3
4
5
6
var
fs =
require
(
'fs'
);
var
insertCss =
require
(
'../'
);
var
css = fs.
readFileSync
(__dirname +
'/style.css'
);
insertCss
(css);
document
.
body
.
appendChild
(
document
.
createTextNode
(
'HELLO CRUEL WORLD'
));