mirror of
https://github.com/liriliri/eruda.git
synced 2026-02-02 09:49:00 +08:00
10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
function exports(css)
|
|
{
|
|
var container = exports.container || document.head,
|
|
style = document.createElement('style');
|
|
|
|
style.type = 'text/css';
|
|
style.textContent = css;
|
|
|
|
container.appendChild(style);
|
|
} |