Skip to content

Commit

Permalink
Update: Tabs to spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Jun 17, 2017
1 parent 720590d commit 2e7ffe4
Show file tree
Hide file tree
Showing 3 changed files with 571 additions and 571 deletions.
86 changes: 43 additions & 43 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,58 +8,58 @@ var PLUGIN_NAME = 'vinyl-sourcemap';

function add(file, callback) {

// Bail early an error if the file argument is not a Vinyl file
if (!File.isVinyl(file)) {
return callback(new Error(PLUGIN_NAME + '-add: Not a vinyl file'));
}

// Bail early with an error if file has streaming contents
if (file.isStream()) {
return callback(new Error(PLUGIN_NAME + '-add: Streaming not supported'));
}

// Bail early successfully if file is null or already has a sourcemap
if (file.isNull() || file.sourceMap) {
return callback(null, file);
}

var state = {
path: '', //root path for the sources in the map
map: null,
content: file.contents.toString(),
preExistingComment: null
};

helpers.addSourceMaps(file, state, callback);
// Bail early an error if the file argument is not a Vinyl file
if (!File.isVinyl(file)) {
return callback(new Error(PLUGIN_NAME + '-add: Not a vinyl file'));
}

// Bail early with an error if file has streaming contents
if (file.isStream()) {
return callback(new Error(PLUGIN_NAME + '-add: Streaming not supported'));
}

// Bail early successfully if file is null or already has a sourcemap
if (file.isNull() || file.sourceMap) {
return callback(null, file);
}

var state = {
path: '', //root path for the sources in the map
map: null,
content: file.contents.toString(),
preExistingComment: null
};

helpers.addSourceMaps(file, state, callback);
}

function write(file, destPath, callback) {

// Check if options or a callback are passed as second argument
if (typeof destPath === 'function') {
callback = destPath;
destPath = undefined;
}
// Check if options or a callback are passed as second argument
if (typeof destPath === 'function') {
callback = destPath;
destPath = undefined;
}

// Bail early with an error if the file argument is not a Vinyl file
if (!File.isVinyl(file)) {
return callback(new Error(PLUGIN_NAME + '-write: Not a vinyl file'));
}
// Bail early with an error if the file argument is not a Vinyl file
if (!File.isVinyl(file)) {
return callback(new Error(PLUGIN_NAME + '-write: Not a vinyl file'));
}

// Bail early with an error if file has streaming contents
if (file.isStream()) {
return callback(new Error(PLUGIN_NAME + '-write: Streaming not supported'));
}
// Bail early with an error if file has streaming contents
if (file.isStream()) {
return callback(new Error(PLUGIN_NAME + '-write: Streaming not supported'));
}

// Bail early successfully if file is null or doesn't have sourcemap
if (file.isNull() || !file.sourceMap) {
return callback(null, file);
}
// Bail early successfully if file is null or doesn't have sourcemap
if (file.isNull() || !file.sourceMap) {
return callback(null, file);
}

helpers.writeSourceMaps(file, destPath, callback);
helpers.writeSourceMaps(file, destPath, callback);
}

module.exports = {
add: add,
write: write,
add: add,
write: write,
};
Loading

0 comments on commit 2e7ffe4

Please sign in to comment.