@blinkdotnew/sdk 0.12.1 → 0.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +0 -6
- package/dist/index.mjs +0 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1318,12 +1318,6 @@ function castSQLiteValue(value) {
|
|
|
1318
1318
|
if (value && typeof value === "object" && value.type === "null") {
|
|
1319
1319
|
return null;
|
|
1320
1320
|
}
|
|
1321
|
-
if (value === "0" || value === 0) {
|
|
1322
|
-
return false;
|
|
1323
|
-
}
|
|
1324
|
-
if (value === "1" || value === 1) {
|
|
1325
|
-
return true;
|
|
1326
|
-
}
|
|
1327
1321
|
return value;
|
|
1328
1322
|
}
|
|
1329
1323
|
function castSQLiteRecord(record) {
|
package/dist/index.mjs
CHANGED
|
@@ -1316,12 +1316,6 @@ function castSQLiteValue(value) {
|
|
|
1316
1316
|
if (value && typeof value === "object" && value.type === "null") {
|
|
1317
1317
|
return null;
|
|
1318
1318
|
}
|
|
1319
|
-
if (value === "0" || value === 0) {
|
|
1320
|
-
return false;
|
|
1321
|
-
}
|
|
1322
|
-
if (value === "1" || value === 1) {
|
|
1323
|
-
return true;
|
|
1324
|
-
}
|
|
1325
1319
|
return value;
|
|
1326
1320
|
}
|
|
1327
1321
|
function castSQLiteRecord(record) {
|
package/package.json
CHANGED