File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -48,10 +48,10 @@ module.exports = function(useSourceMap) {
48
48
} ;
49
49
50
50
function cssWithMappingToString ( item , useSourceMap ) {
51
- var content = item [ 1 ] || '' ;
51
+ var content_ = item [ 1 ] || '' ;
52
52
var cssMapping = item [ 3 ] ;
53
53
if ( ! cssMapping ) {
54
- return content ;
54
+ return content_ ;
55
55
}
56
56
57
57
if ( useSourceMap && typeof btoa === 'function' ) {
@@ -60,10 +60,10 @@ function cssWithMappingToString(item, useSourceMap) {
60
60
return '/*# sourceURL=' + cssMapping . sourceRoot + source + ' */'
61
61
} ) ;
62
62
63
- return [ content ] . concat ( sourceURLs ) . concat ( [ sourceMapping ] ) . join ( '\n' ) ;
63
+ return [ content_ ] . concat ( sourceURLs ) . concat ( [ sourceMapping ] ) . join ( '\n' ) ;
64
64
}
65
65
66
- return [ content ] . join ( '\n' ) ;
66
+ return [ content_ ] . join ( '\n' ) ;
67
67
}
68
68
69
69
// Adapted from convert-source-map (MIT)
You can’t perform that action at this time.
0 commit comments