Commit a19ed3dc by Andrew Nesbitt

Merge pull request #502 from am11/master

Revert: Uses null default instead of undefined
parents 3619c1f9 3cc3057f
......@@ -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') {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment