Skip to content

Commit

Permalink
FIX: Syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilian Schmidt committed Oct 9, 2018
1 parent 9f534c0 commit 111cd04
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/isset.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/module.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function isset(test,type) {
test != undefined && (
!_check || (typeof test === type || _instance)
) && (
!_check || !(type == 'string') || (test != '' && test != ' ')
!_check || (type != 'string') || (test != '' && test != ' ')
)
)
);
}

0 comments on commit 111cd04

Please sign in to comment.