Skip to content

Commit ce4e8dc

Browse files
ANDRES SARMIENTO TOBONANDRES SARMIENTO TOBON
authored andcommitted
fix: use content_ insead of content (#674)
1 parent 630579d commit ce4e8dc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/css-base.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ module.exports = function(useSourceMap) {
4848
};
4949

5050
function cssWithMappingToString(item, useSourceMap) {
51-
var content = item[1] || '';
51+
var content_ = item[1] || '';
5252
var cssMapping = item[3];
5353
if (!cssMapping) {
54-
return content;
54+
return content_;
5555
}
5656

5757
if (useSourceMap && typeof btoa === 'function') {
@@ -60,10 +60,10 @@ function cssWithMappingToString(item, useSourceMap) {
6060
return '/*# sourceURL=' + cssMapping.sourceRoot + source + ' */'
6161
});
6262

63-
return [content].concat(sourceURLs).concat([sourceMapping]).join('\n');
63+
return [content_].concat(sourceURLs).concat([sourceMapping]).join('\n');
6464
}
6565

66-
return [content].join('\n');
66+
return [content_].join('\n');
6767
}
6868

6969
// Adapted from convert-source-map (MIT)

0 commit comments

Comments
 (0)