You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
688 B
22 lines
688 B
3 years ago
|
"use strict";
|
||
|
|
||
|
module.exports = function (item) {
|
||
|
var content = item[1];
|
||
|
var cssMapping = item[3];
|
||
|
|
||
|
if (!cssMapping) {
|
||
|
return content;
|
||
|
}
|
||
|
|
||
|
if (typeof btoa === "function") {
|
||
|
var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(cssMapping))));
|
||
|
var data = "sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(base64);
|
||
|
var sourceMapping = "/*# ".concat(data, " */");
|
||
|
var sourceURLs = cssMapping.sources.map(function (source) {
|
||
|
return "/*# sourceURL=".concat(cssMapping.sourceRoot || "").concat(source, " */");
|
||
|
});
|
||
|
return [content].concat(sourceURLs).concat([sourceMapping]).join("\n");
|
||
|
}
|
||
|
|
||
|
return [content].join("\n");
|
||
|
};
|