gato 0.0.1 gato: ^0.0.1 copied to clipboard
A dart utility library inspired by javascript lodash library.
import '../lib/gato.dart';
void main() {
Map<String, dynamic> map = {
'a': {'b': 1}
};
print(get(map, 'a.b'));
map = set(map, 'a.c', 2);
print(get(map, 'a.c'));
}