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.
1 parent d1d2542 commit 2219139Copy full SHA for 2219139
package/src/index.ts
@@ -27,12 +27,12 @@ export const NitroSQLite = {
27
export { open } from './operations/session'
28
29
let ENABLE_SIMPLE_NULL_HANDLING = false
30
-export function enableEasierNullHandling(
+export function enableSimpleNullHandling(
31
shouldEnableSimpleNullHandling = true
32
) {
33
ENABLE_SIMPLE_NULL_HANDLING = shouldEnableSimpleNullHandling
34
}
35
-export function simpleNullHandlingEnabled() {
+export function isSimpleNullHandlingEnabled() {
36
return ENABLE_SIMPLE_NULL_HANDLING
37
38
0 commit comments