Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 8d0ad90

Browse files
committed
Linter fixes
1 parent 0f77271 commit 8d0ad90

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/files/add.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ module.exports = (send) => {
4141
} else if (opts.hashAlg != null) {
4242
qs.hash = opts.hashAlg
4343
}
44-
if (opts["only-hash"] != null) {
45-
qs["only-hash"] = opts["only-hash"];
44+
if (opts['only-hash'] != null) {
45+
qs['only-hash'] = opts['only-hash']
4646
}
4747
if (opts.pin != null) {
48-
qs.pin = opts.pin;
48+
qs.pin = opts.pin
4949
}
5050

5151
const request = { path: 'add', files: files, qs: qs, progress: opts.progress }

0 commit comments

Comments
 (0)