Skip to content

Commit

Permalink
Updated build
Browse files Browse the repository at this point in the history
  • Loading branch information
nimjetushar committed Jan 27, 2020
1 parent 8163f4d commit e1eeaf3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/logger.min-umd.js

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

2 changes: 1 addition & 1 deletion build/utils-umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ function deepCopy() {

// CONCATENATED MODULE: ./core/isDefined.js
function isDefined(data) {
return !(data === null || data === undefined || data === "");
return !(data == null || data === "");
}


Expand Down
2 changes: 1 addition & 1 deletion build/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ function deepCopy() {

// CONCATENATED MODULE: ./core/isDefined.js
function isDefined(data) {
return !(data === null || data === undefined || data === "");
return !(data == null || data === "");
}


Expand Down
2 changes: 1 addition & 1 deletion build/utils.min-umd.js

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

0 comments on commit e1eeaf3

Please sign in to comment.