EASYAIuniappNewUI/node_modules/licia/evalCss.js
2025-02-08 18:50:38 +08:00

10 lines
219 B
JavaScript

exports = function(css) {
var style = document.createElement('style');
style.textContent = css;
style.type = 'text/css';
document.head.appendChild(style);
return style;
};
module.exports = exports;