Skip to content

Commit 6a4c023

Browse files
committed
Fix check expression
1 parent 6816692 commit 6a4c023

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ const connect = options => new Promise((resolve, reject) => {
153153
propertyNameKeyPrevious = propertyNameKey;
154154
valueToSend = {};
155155
}
156-
if (propertyNameKeySplit.length === 1 && value != null) {
156+
if (propertyNameKeySplit.length === 1 && value !== null) {
157157
valueToSend = value;
158158
} else {
159159
const attributeName = propertyNameKeySplit[attributeNameId];

0 commit comments

Comments
 (0)