Skip to content

Commit

Permalink
字符串比较改为严格模式
Browse files Browse the repository at this point in the history
  • Loading branch information
click33 committed Nov 18, 2020
1 parent d98f7e6 commit c7d726b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/sa.js
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ var sa = {
var newObj = {};
if(obj != undefined && obj != null) {
for(var key in obj) {
if(obj[key] === undefined || obj[key] === null || obj[key] == '') {
if(obj[key] === undefined || obj[key] === null || obj[key] === '') {
//
} else {
newObj[key] = obj[key];
Expand Down

0 comments on commit c7d726b

Please sign in to comment.