Comparing version 0.2.0-pre.6 to 0.2.0-pre.7
@@ -216,3 +216,3 @@ "use strict"; | ||
defaultSafeIntegers(toggle) { | ||
databaseDefaultSafeIntegers.call(this.db, toggle || true); | ||
databaseDefaultSafeIntegers.call(this.db, toggle ?? true); | ||
return this; | ||
@@ -240,3 +240,3 @@ } | ||
raw(raw) { | ||
statementRaw.call(this.stmt, raw || true); | ||
statementRaw.call(this.stmt, raw ?? true); | ||
return this; | ||
@@ -324,3 +324,3 @@ } | ||
safeIntegers(toggle) { | ||
statementSafeIntegers.call(this.stmt, toggle || true); | ||
statementSafeIntegers.call(this.stmt, toggle ?? true); | ||
return this; | ||
@@ -327,0 +327,0 @@ } |
{ | ||
"name": "libsql", | ||
"version": "0.2.0-pre.6", | ||
"version": "0.2.0-pre.7", | ||
"description": "", | ||
@@ -52,3 +52,3 @@ "os": [ | ||
"type": "git", | ||
"url": "git+https://github.com/libsql/libsql.git" | ||
"url": "git+https://github.com/tursodatabase/libsql-js.git" | ||
}, | ||
@@ -59,5 +59,5 @@ "keywords": [ | ||
"bugs": { | ||
"url": "https://github.com/libsql/libsql/issues" | ||
"url": "https://github.com/tursodatabase/libsql-js/issues" | ||
}, | ||
"homepage": "https://github.com/libsql/libsql", | ||
"homepage": "https://github.com/tursodatabase/libsql-js", | ||
"devDependencies": { | ||
@@ -71,10 +71,10 @@ "@neon-rs/cli": "^0.0.165" | ||
"optionalDependencies": { | ||
"@libsql/darwin-arm64": "0.2.0-pre.6", | ||
"@libsql/darwin-x64": "0.2.0-pre.6", | ||
"@libsql/linux-arm64-gnu": "0.2.0-pre.6", | ||
"@libsql/linux-arm64-musl": "0.2.0-pre.6", | ||
"@libsql/linux-x64-gnu": "0.2.0-pre.6", | ||
"@libsql/linux-x64-musl": "0.2.0-pre.6", | ||
"@libsql/win32-x64-msvc": "0.2.0-pre.6" | ||
"@libsql/darwin-arm64": "0.2.0-pre.7", | ||
"@libsql/darwin-x64": "0.2.0-pre.7", | ||
"@libsql/linux-arm64-gnu": "0.2.0-pre.7", | ||
"@libsql/linux-arm64-musl": "0.2.0-pre.7", | ||
"@libsql/linux-x64-gnu": "0.2.0-pre.7", | ||
"@libsql/linux-x64-musl": "0.2.0-pre.7", | ||
"@libsql/win32-x64-msvc": "0.2.0-pre.7" | ||
} | ||
} |
@@ -197,3 +197,3 @@ "use strict"; | ||
defaultSafeIntegers(toggle) { | ||
databaseDefaultSafeIntegers.call(this.db, toggle || true); | ||
databaseDefaultSafeIntegers.call(this.db, toggle ?? true); | ||
return this; | ||
@@ -221,3 +221,3 @@ } | ||
raw(raw) { | ||
statementRaw.call(this.stmt, raw || true); | ||
statementRaw.call(this.stmt, raw ?? true); | ||
return this; | ||
@@ -306,3 +306,3 @@ } | ||
safeIntegers(toggle) { | ||
statementSafeIntegers.call(this.stmt, toggle || true); | ||
statementSafeIntegers.call(this.stmt, toggle ?? true); | ||
return this; | ||
@@ -309,0 +309,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
29532