mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 15:57:48 +00:00
Fix typo that caused sourceMappingURL to be undefined in source map builds.
Former-commit-id: ff3b22a7965c15a1ae072f8e9d51009e095ec443
This commit is contained in:
@@ -304,10 +304,10 @@
|
||||
function closureCompile(source, mode, callback) {
|
||||
var filePath = this.filePath,
|
||||
isAdvanced = mode == 'advanced',
|
||||
outputPath = this.outputPath,
|
||||
isMapped = this.isMapped,
|
||||
mapPath = getMapPath(outputPath),
|
||||
options = closureOptions.slice(),
|
||||
outputPath = this.outputPath;
|
||||
options = closureOptions.slice();
|
||||
|
||||
// remove copyright header to make other modifications easier
|
||||
var license = (/^(?:\s*\/\/.*\s*|\s*\/\*[^*]*\*+(?:[^\/][^*]*\*+)*\/\s*)*/.exec(source) || [''])[0];
|
||||
|
||||
Reference in New Issue
Block a user