Skip to content

Commit

Permalink
Merge pull request #502 from am11/master
Browse files Browse the repository at this point in the history
Revert: Uses null default instead of undefined
  • Loading branch information
andrew committed Oct 31, 2014
2 parents 3619c1f + 3cc3057 commit a19ed3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ function getStyle(options) {
function getSourceMap(options) {
var file = options.file;
var outFile = options.outFile;
var sourceMap = options.sourceMap || null;
var sourceMap = options.sourceMap;

if (sourceMap) {
if (typeof sourceMap !== 'string') {
Expand Down

0 comments on commit a19ed3d

Please sign in to comment.