Skip to content

Commit

Permalink
fix beta lints
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Sep 26, 2024
1 parent d4a9986 commit 2640de5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions idb_shim/lib/src/native_web/js_utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ extension JSDateExtension on JSDate {
/// JavaScript Array extension.
extension JSArrayExtension on JSArray {
/// Get the length of the array
@JS('length')
external int get idbShimLength;
}

Expand Down
2 changes: 1 addition & 1 deletion idb_shim/lib/src/utils/value_utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ bool equals(dynamic value1, dynamic value2) {

/// Compare 2 values.
///
/// return <0 if value1 < value2 or >0 if greater
/// return `< 0` if value1 is before value2 or `> 0` if greater
/// returns null if cannot be compared
int? compareValue(dynamic value1, dynamic value2) {
try {
Expand Down

0 comments on commit 2640de5

Please sign in to comment.