Skip to content

Commit 2219139

Browse files
committed
refactor: rename simple null handling functions
1 parent d1d2542 commit 2219139

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ export const NitroSQLite = {
2727
export { open } from './operations/session'
2828

2929
let ENABLE_SIMPLE_NULL_HANDLING = false
30-
export function enableEasierNullHandling(
30+
export function enableSimpleNullHandling(
3131
shouldEnableSimpleNullHandling = true
3232
) {
3333
ENABLE_SIMPLE_NULL_HANDLING = shouldEnableSimpleNullHandling
3434
}
35-
export function simpleNullHandlingEnabled() {
35+
export function isSimpleNullHandlingEnabled() {
3636
return ENABLE_SIMPLE_NULL_HANDLING
3737
}
3838

0 commit comments

Comments
 (0)