Skip to content

Commit

Permalink
remove debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
carsonxu committed Oct 18, 2018
1 parent ce7f326 commit 4051ac9
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions dist/cos-js-sdk-v5.js
Original file line number Diff line number Diff line change
Expand Up @@ -1938,7 +1938,7 @@ util.extend(COS.prototype, base);
util.extend(COS.prototype, advance);

COS.getAuthorization = util.getAuth;
COS.version = '0.4.19';
COS.version = '0.4.20';

module.exports = COS;

Expand Down Expand Up @@ -4241,7 +4241,6 @@ function deleteBucketPolicy(params, callback) {
headers: params.Headers,
action: 'policy'
}, function (err, data) {
debugger;
if (err && err.statusCode === 204) {
return callback(null, { statusCode: err.statusCode });
} else if (err) {
Expand Down
2 changes: 1 addition & 1 deletion dist/cos-js-sdk-v5.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cos-js-sdk-v5",
"version": "0.4.19",
"version": "0.4.20",
"description": "cos js sdk v5",
"main": "index.js",
"scripts": {
Expand Down
1 change: 0 additions & 1 deletion src/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,6 @@ function deleteBucketPolicy(params, callback) {
headers: params.Headers,
action: 'policy',
}, function (err, data) {
debugger;
if (err && err.statusCode === 204) {
return callback(null, {statusCode: err.statusCode});
} else if (err) {
Expand Down
2 changes: 1 addition & 1 deletion src/cos.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ util.extend(COS.prototype, base);
util.extend(COS.prototype, advance);

COS.getAuthorization = util.getAuth;
COS.version = '0.4.19';
COS.version = '0.4.20';

module.exports = COS;

0 comments on commit 4051ac9

Please sign in to comment.