You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.option("-s, --seedchar [value]", "The seed character (first character in the generated text)")
.option("-w, --windowsize [value]", "The window size (how many characters deep will be considered). Warning: this consumes exponentially more memory. Start with '-w 20' and see what your machine can handle.", parseInt)
.option("-l, --length [value]", "The generated text length in characters", parseInt)
.parse(process.argv)
if (!program.args[0]) { console.error("Error: no source file provided") }