Data traversal for flect types
npm install @flect/traverse

Data traversal for Flect types
Flect/traverse is a library for building traversals for Flect types.
``ts
const Animal = record({
legCount: numberType,
sound: stringType
});
type Animal = Reify
const getSound = traverseRecord(Animal, "sound");
const myDog = {legCount: 4, sound: "woof"};
console.log(getSound(myDog)); // Goes 'woof'
``