We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 851ba18 + 515ba8a commit 55c0e6cCopy full SHA for 55c0e6c
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "set.js",
3
- "version": "0.4.7",
+ "version": "0.4.8",
4
"description": "A javascript library for interacting with the Set Protocol v2",
5
"keywords": [
6
"set.js",
src/assertions/CommonAssertions.ts
@@ -75,7 +75,7 @@ export class CommonAssertions {
75
}
76
77
public isNotUndefined(value: any, errorMessage: string) {
78
- if (!value) {
+ if (value === undefined) {
79
throw new Error(errorMessage);
80
81
0 commit comments