mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
10 lines
408 B
Dart
10 lines
408 B
Dart
import 'package:nc_photos/object_extension.dart';
|
|
|
|
/// Convert a boolean to an indexable type in json for DB
|
|
///
|
|
/// This is needed because IndexedDB currently does not support creating an
|
|
/// index on a boolean value
|
|
Object? boolToJson(bool? value) => value?.run((v) => v ? 1 : 0);
|
|
|
|
/// Convert a boolean from an indexable type in json for DB
|
|
bool? boolFromJson(Object? value) => value?.run((v) => v != 0);
|