{“ast”:null,“code”:“"use strict";n/*n MIT License www.opensource.org/licenses/mit-license.phpn Author Tobias Koppers @sokran*/n// css base code, injected by the css-loadernnmodule.exports = function (useSourceMap) {n var list = []; // return the list of modules as css stringnn list.toString = function toString() {n return this.map(function (item) {n var content = cssWithMappingToString(item, useSourceMap);nn if (item) {n return '@media ' + item + '{' + content + '}';n } else {n return content;n }n }).join('');n }; // import a list of modules into the listnnn list.i = function (modules, mediaQuery) {n if (typeof modules === 'string') {n modules = [[null, modules, '']];n }nn var alreadyImportedModules = {};nn for (var i = 0; i < this.length; i++) {n var id = this[0];nn if (id != null) {n alreadyImportedModules = true;n }n }nn for (i = 0; i < modules.length; i++) {n var item = modules; // skip already imported modulen // this implementation is not 100% perfect for weird media query combinationsn // when a module is imported multiple times with different media queries.n // I hope this will never occur (Hey this way we have smaller bundles)nn if (item == null || !alreadyImportedModules[item]) {n if (mediaQuery && !item) {n item = mediaQuery;n } else if (mediaQuery) {n item = '(' + item + ') and (' + mediaQuery + ')';n }nn list.push(item);n }n }n };nn return list;n};nnfunction cssWithMappingToString(item, useSourceMap) {n var content = item || '';n var cssMapping = item;nn if (!cssMapping) {n return content;n }nn if (useSourceMap && typeof btoa === 'function') {n var sourceMapping = toComment(cssMapping);n var sourceURLs = cssMapping.sources.map(function (source) {n return '/*# sourceURL=' + cssMapping.sourceRoot + source + ' */';n });n return [content].concat(sourceURLs).concat().join('\n');n }nn return [content].join('\n');n} // Adapted from convert-source-map (MIT)nnnfunction toComment(sourceMap) {n // eslint-disable-next-line no-undefn var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));n var data = 'sourceMappingURL=data:application/json;charset=utf-8;base64,' + base64;n return '/*# ' + data + ' */';n}”,“map”:null,“metadata”:{},“sourceType”:“module”}