Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechsTech committed Feb 6, 2018
1 parent d40abce commit 24936a1
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/add.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var u = {
* @progress {array} Listed files and directories.
* @reject {Error} The error as issued by 7-Zip.
*/
module.exports = function (archive, files, options) {
module.exports = function(archive, files, options) {
return when.promise(function (resolve, reject, progress) {

// Convert array of files into a string if needed.
Expand Down
2 changes: 1 addition & 1 deletion lib/delete.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var u = {
* @resolve {array} Arguments passed to the child-process.
* @reject {Error} The error as issued by 7-Zip.
*/
module.exports = function (archive, files, options) {
module.exports = function(archive, files, options) {
return when.promise(function (resolve, reject) {

// Convert array of files into a string if needed.
Expand Down
2 changes: 1 addition & 1 deletion lib/extract.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var u = {
* @progress {array} Extracted files and directories.
* @reject {Error} The error as issued by 7-Zip.
*/
module.exports = function (archive, dest, options) {
module.exports = function(archive, dest, options) {
return when.promise(function (resolve, reject, progress) {

// Create a string that can be parsed by `run`.
Expand Down
4 changes: 2 additions & 2 deletions lib/extractFull.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var u = {
* @progress {array} Extracted files and directories.
* @reject {Error} The error as issued by 7-Zip.
*/
module.exports = function (archive, dest, options) {
module.exports = function(archive, dest, options) {
return when.promise(function (resolve, reject, progress) {

// Create a string that can be parsed by `run`.
Expand All @@ -44,7 +44,7 @@ module.exports = function (archive, dest, options) {
? true
: false;
if (isUnsupportedMethod) {
return reject(new Error('Unsupported Method'))
console.log(new Error('Unsupported Method'));
}

var entries = [];
Expand Down
2 changes: 1 addition & 1 deletion lib/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var u = {
* @resolve {Object} Tech spec about the archive.
* @reject {Error} The error as issued by 7-Zip.
*/
module.exports = function (archive, options) {
module.exports = function(archive, options) {
return when.promise(function (resolve, reject, progress) {

var spec = {};
Expand Down
2 changes: 1 addition & 1 deletion lib/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var u = {
* @progress {array} Extracted files and directories.
* @reject {Error} The error as issued by 7-Zip.
*/
module.exports = function (archive, options) {
module.exports = function(archive, options) {
return when.promise(function (resolve, reject, progress) {

// Create a string that can be parsed by `run`.
Expand Down
2 changes: 1 addition & 1 deletion lib/update.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var u = {
* @progress {array} Listed files and directories.
* @reject {Error} The error as issued by 7-Zip.
*/
module.exports = function (archive, files, options) {
module.exports = function(archive, files, options) {
return when.promise(function (resolve, reject, progress) {

// Create a string that can be parsed by `run`.
Expand Down

0 comments on commit 24936a1

Please sign in to comment.