map_diff 1.0.0 copy "map_diff: ^1.0.0" to clipboard
map_diff: ^1.0.0 copied to clipboard

A dart package to compare two maps and return the differences between them.

map_diff #

Build Status

A dart package to compare two maps and return the differences between them.

Getting Started #

Pubspec #

dependencies:
  map_diff: ^1.0.0

Example #

import 'package:map_diff/map_diff.dart';

final left = <String, dynamic>{};
final right = <String, dynamic>{'key': 'value'};
final diff = mapDiff(left, right);

print(diff); // {key: value}

Tests #

dart run test/map_diff_test.dart
2
likes
0
points
7
downloads

Publisher

verified publisherfelipereis.me

Weekly Downloads

A dart package to compare two maps and return the differences between them.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

collection

More

Packages that depend on map_diff