Create, update and run Markov chain models for text generation.
$ npm install --save hx-markov-chain
const markov = require("hx-markov-chain");
const model = markov.create();
markov.update(model, ["a", "b", "c"]);
markov.update(model, ["a", "c", "d"]);
const chain = markov.run(model);
MIT © Hexacta