Commit 3cc3057f by Adeel

Revert: Uses null default instead of undefined.

Commit: 3b2c4954.
parent 3619c1f9
......@@ -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