// all fine
const state = HashMap.fromIterable([
["a", 1],
["b", 2]
]);
// no likey
const state = HashMap.fromIterable([
["a", 1],
["b", "2"]
]);
// all fine
const state = HashMap.fromIterable([
["a", 1],
["b", 2]
]);
// no likey
const state = HashMap.fromIterable([
["a", 1],
["b", "2"]
]);