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) {
4848} ;
4949
5050function 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)
You can’t perform that action at this time.
0 commit comments