evalCss.js 219 B

123456789
  1. exports = function(css) {
  2. var style = document.createElement('style');
  3. style.textContent = css;
  4. style.type = 'text/css';
  5. document.head.appendChild(style);
  6. return style;
  7. };
  8. module.exports = exports;