Skip to content

Commit 039a2e5

Browse files
committed
Fix this.opts.strip if statement
1 parent b0ce0d6 commit 039a2e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function BinWrapper(opts) {
2121

2222
this.opts = opts || {};
2323

24-
if (this.opts.strip <= 0 || !this.opts.strip) {
24+
if (this.opts.strip <= 0) {
2525
this.opts.strip = 0;
2626
} else if (!this.opts.strip) {
2727
this.opts.strip = 1;

0 commit comments

Comments
 (0)