Files
flights_web_raw/node_modules/style-loader/dist/runtime/insertStyleElement.js
T

11 lines
261 B
JavaScript

"use strict";
/* istanbul ignore next */
function insertStyleElement(options) {
var style = document.createElement("style");
options.setAttributes(style, options.attributes);
options.insert(style);
return style;
}
module.exports = insertStyleElement;