-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss-inline.js
38 lines (37 loc) · 949 Bytes
/
css-inline.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"format cjs";
if (typeof window !== 'undefined') {
exports.translate = function(load) {
var css = encodeCss(load.source);
return "\
define([],function(){\
var style = document.createElement('style');\
if (style.styleSheet) {\
style.styleSheet.cssText = '" + css + "';\
} else {\
style.appendChild(document.createTextNode('" + css + "'));\
}\
document.head.appendChild(style);\
return style;\
});"
}
}
// https://github.com/joliss/js-string-escape
function encodeCss(css)
{
return css.replace(/["'\\\n\r\u2028\u2029]/g, function (ch) {
switch (ch) {
case '"':
case "'":
case '\\':
return '\\' + ch;
case '\n':
return '\\n'
case '\r':
return '\\r'
case '\u2028':
return '\\u2028'
case '\u2029':
return '\\u2029'
}
})
}