Commit 3b2c4954 by Adeel

Options: Uses null default instead of undefined.

parent dd7f59fe
...@@ -110,7 +110,7 @@ function getStyle(options) { ...@@ -110,7 +110,7 @@ function getStyle(options) {
function getSourceMap(options) { function getSourceMap(options) {
var file = options.file; var file = options.file;
var outFile = options.outFile; var outFile = options.outFile;
var sourceMap = options.sourceMap; var sourceMap = options.sourceMap || null;
if (sourceMap) { if (sourceMap) {
if (typeof sourceMap !== 'string') { 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